Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Cornu2004-12-17 17:09:44 +0000
committerChristophe Cornu2004-12-17 17:09:44 +0000
commitbedb007518acff9ec9c5f18f211cae0085f6fdd8 (patch)
tree71b91bb391aaff8ee3988e67b594dbd2d64de1b3
parentf9229cc6eee57fe3cf0477ba6a7209197022f11b (diff)
downloadeclipse.platform.swt-bedb007518acff9ec9c5f18f211cae0085f6fdd8.tar.gz
eclipse.platform.swt-bedb007518acff9ec9c5f18f211cae0085f6fdd8.tar.xz
eclipse.platform.swt-bedb007518acff9ec9c5f18f211cae0085f6fdd8.zip
78295
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
index ae55844879..bb9089f9b6 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
@@ -3798,8 +3798,8 @@ public static final void gtk_file_chooser_add_filter(int /*long*/ chooser, int /
lock.unlock();
}
}
-public static final native int /*long*/ _gtk_file_chooser_dialog_new(byte[] title, int /*long*/ parent, int action, int /*long*/ first_button_text, int first_button_id, int /*long*/ second_button_text, int second_button_id, int terminator);
-public static final int /*long*/ gtk_file_chooser_dialog_new(byte[] title, int /*long*/ parent, int action, int /*long*/ first_button_text, int first_button_id, int /*long*/ second_button_text, int second_button_id, int terminator) {
+public static final native int /*long*/ _gtk_file_chooser_dialog_new(byte[] title, int /*long*/ parent, int action, int /*long*/ first_button_text, int first_button_id, int /*long*/ second_button_text, int second_button_id, int /*long*/ terminator);
+public static final int /*long*/ gtk_file_chooser_dialog_new(byte[] title, int /*long*/ parent, int action, int /*long*/ first_button_text, int first_button_id, int /*long*/ second_button_text, int second_button_id, int /*long*/ terminator) {
lock.lock();
try {
return _gtk_file_chooser_dialog_new(title, parent, action, first_button_text, first_button_id, second_button_text, second_button_id, terminator);

Back to the top