mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 08:55:25 +02:00
[250822] Import/Export file dialog missing "*" filter
This commit is contained in:
parent
26a457e6d6
commit
21661960b4
4 changed files with 8 additions and 8 deletions
|
@ -197,8 +197,8 @@ public class PlainTextExporter implements IMemoryExporter {
|
|||
public void widgetSelected(SelectionEvent e) {
|
||||
FileDialog dialog = new FileDialog(parent.getShell(), SWT.SAVE);
|
||||
dialog.setText("Choose memory export file");
|
||||
dialog.setFilterExtensions(new String[] { "*.*" } );
|
||||
dialog.setFilterNames(new String[] { "All Files (*.*)" } );
|
||||
dialog.setFilterExtensions(new String[] { "*.*;*" } );
|
||||
dialog.setFilterNames(new String[] { "All Files" } );
|
||||
dialog.setFileName(fFileText.getText());
|
||||
dialog.open();
|
||||
|
||||
|
|
|
@ -172,8 +172,8 @@ public class PlainTextImporter implements IMemoryImporter {
|
|||
public void widgetSelected(SelectionEvent e) {
|
||||
FileDialog dialog = new FileDialog(parent.getShell(), SWT.SAVE);
|
||||
dialog.setText("Choose memory export file");
|
||||
dialog.setFilterExtensions(new String[] { "*.*" } );
|
||||
dialog.setFilterNames(new String[] { "All Files (*.*)" } );
|
||||
dialog.setFilterExtensions(new String[] { "*.*;*" } );
|
||||
dialog.setFilterNames(new String[] { "All Files" } );
|
||||
dialog.setFileName(fFileText.getText());
|
||||
dialog.open();
|
||||
|
||||
|
|
|
@ -193,8 +193,8 @@ public class SRecordExporter implements IMemoryExporter
|
|||
public void widgetSelected(SelectionEvent e) {
|
||||
FileDialog dialog = new FileDialog(parent.getShell(), SWT.SAVE);
|
||||
dialog.setText("Choose memory export file");
|
||||
dialog.setFilterExtensions(new String[] { "*.*" } );
|
||||
dialog.setFilterNames(new String[] { "All Files (*.*)" } );
|
||||
dialog.setFilterExtensions(new String[] { "*.*;*" } );
|
||||
dialog.setFilterNames(new String[] { "All Files" } );
|
||||
dialog.setFileName(fFileText.getText());
|
||||
dialog.open();
|
||||
|
||||
|
|
|
@ -167,8 +167,8 @@ public class SRecordImporter implements IMemoryImporter {
|
|||
public void widgetSelected(SelectionEvent e) {
|
||||
FileDialog dialog = new FileDialog(parent.getShell(), SWT.SAVE);
|
||||
dialog.setText("Choose memory export file");
|
||||
dialog.setFilterExtensions(new String[] { "*.*" } );
|
||||
dialog.setFilterNames(new String[] { "All Files (*.*)" } );
|
||||
dialog.setFilterExtensions(new String[] { "*.*;*" } );
|
||||
dialog.setFilterNames(new String[] { "All Files" } );
|
||||
dialog.setFileName(fFileText.getText());
|
||||
dialog.open();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue