Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Ryall2009-09-06 04:41:23 +0000
committerKen Ryall2009-09-06 04:41:23 +0000
commit4853dda34a3ac3379106e741f1a0056d187d103b (patch)
treedbedcec76e119f0fca1fe891aa676ec60439a561
parentb67db7c5b9d43e118202f7eab2ad0497b164b7b8 (diff)
downloadorg.eclipse.cdt-4853dda34a3ac3379106e741f1a0056d187d103b.tar.gz
org.eclipse.cdt-4853dda34a3ac3379106e741f1a0056d187d103b.tar.xz
org.eclipse.cdt-4853dda34a3ac3379106e741f1a0056d187d103b.zip
Bug 281985. Removes file filtering from this dialog, it was a nice idea but isn't worth the effort to do it reliably in a cross-platform way.
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/importexecutable/ImportExecutableWizard.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/importexecutable/ImportExecutableWizard.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/importexecutable/ImportExecutableWizard.java
index d1c440afd7b..6039c349c70 100644
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/importexecutable/ImportExecutableWizard.java
+++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/importexecutable/ImportExecutableWizard.java
@@ -36,8 +36,6 @@ public class ImportExecutableWizard extends AbstractImportExecutableWizard {
public void setupFileDialog(FileDialog dialog) {
dialog.setText(Messages.ImportExecutableWizard_fileDialogTitle);
- dialog.setFilterExtensions(new String[] { "*", "*.exe", "*.dll" });
- dialog.setFilterNames(new String[] { Messages.ImportExecutableWizard_AllFiles, Messages.ImportExecutableWizard_Applications, Messages.ImportExecutableWizard_LIbaries });
}
public boolean supportsConfigurationType(ILaunchConfigurationType type) {

Back to the top