1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-21 16:05:25 +02:00

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.

This commit is contained in:
Ken Ryall 2009-09-06 04:40:06 +00:00
parent a8e9a0c1c5
commit 5c17740fa9

View file

@ -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) {