Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2007-10-26 16:21:20 +0000
committerBogdan Gheorghe2007-10-26 16:21:20 +0000
commit92843018514c011a74f3206908477aff961e1213 (patch)
tree53b77878287795d5f37ef0c8819ae898104c9e1c
parent71b5647db644687dbc8eb3b795879057ae565772 (diff)
downloadeclipse.platform.swt-92843018514c011a74f3206908477aff961e1213.tar.gz
eclipse.platform.swt-92843018514c011a74f3206908477aff961e1213.tar.xz
eclipse.platform.swt-92843018514c011a74f3206908477aff961e1213.zip
Changed idleProc key name
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java
index f6936bae60..748b86bf7d 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java
@@ -36,8 +36,8 @@ public class PrintDialog extends Dialog {
static final String GET_MODAL_DIALOG = "org.eclipse.swt.internal.gtk.getModalDialog";
static final String SET_MODAL_DIALOG = "org.eclipse.swt.internal.gtk.setModalDialog";
- static final String ADD_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk2.addIdleProc";
- static final String REMOVE_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk2.removeIdleProc";
+ static final String ADD_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk.addIdleProc";
+ static final String REMOVE_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk.removeIdleProc";
/**
* Constructs a new instance of this class given only its parent.
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
index 74c5b4001d..f7f546b360 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
@@ -200,8 +200,8 @@ public class Display extends Device {
int /*long*/ idleProc;
int idleHandle;
Callback idleCallback;
- static final String ADD_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk2.addIdleProc";
- static final String REMOVE_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk2.removeIdleProc";
+ static final String ADD_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk.addIdleProc";
+ static final String REMOVE_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk.removeIdleProc";
Object idleLock = new Object();
boolean idleNeeded;

Back to the top