mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-22 08:30:35 +00:00
getFileExtensions is now a static member - updated code to reflect this.
This commit is contained in:
parent
4bf1a965d5
commit
3eb7adc2a8
@ -143,7 +143,7 @@ public class ExportGraphicsTypePane extends WizardPane {
|
||||
label.setText(textBundle.get("ExportGraphicsFileFormatPrompt")); //$NON-NLS-1$
|
||||
Composite graphicsFormatGroup = new Composite(control, SWT.NULL);
|
||||
graphicsFormatGroup.setLayout(subpanelLayout);
|
||||
String[] formats = getGraphicsFilter().getFileExtensions();
|
||||
String[] formats = GraphicsFileFilter.getFileExtensions();
|
||||
for (int i=0; i<formats.length; i++) {
|
||||
button = new Button(graphicsFormatGroup, SWT.RADIO);
|
||||
button.setText(formats[i]);
|
||||
|
Loading…
Reference in New Issue
Block a user