Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Cornu2004-12-20 20:47:31 +0000
committerChristophe Cornu2004-12-20 20:47:31 +0000
commita59828b21754db6e3849f2a95414edc58a048f4f (patch)
tree2d553708331153cd6a89cdaa250b6e33d6b884ea
parenta3b9b6b6e19057519403c2060506e8e8d1232035 (diff)
downloadeclipse.platform.swt-a59828b21754db6e3849f2a95414edc58a048f4f.tar.gz
eclipse.platform.swt-a59828b21754db6e3849f2a95414edc58a048f4f.tar.xz
eclipse.platform.swt-a59828b21754db6e3849f2a95414edc58a048f4f.zip
restore code for new file chooser
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
index 8f9bea932b..b02148d17b 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
@@ -267,8 +267,6 @@ public String getFilterPath () {
*/
public String open () {
boolean useChooserDialog = OS.gtk_check_version (2, 4, 10) == 0;
- // TEMPORARY CODE - va_list in gtk_file_chooser_dialog_new crashes on AMD64
- if (OS.PTR_SIZEOF == 8) useChooserDialog = false;
if (useChooserDialog) {
return openChooserDialog ();
} else {

Back to the top