summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio_quarti@ca.ibm.com>2012-08-14 16:56:33 -0400
committerSilenio Quarti <silenio_quarti@ca.ibm.com>2012-08-14 16:57:12 -0400
commita104ef04f5c11c447be0b7779b1621be8be740f1 (patch)
tree6a18d77c4e821e033b49b7f238b3b6203e39aaec
parent5213f26974b8ca431962cd7253d22584483728fc (diff)
downloadeclipse.platform.swt-a104ef04f5c11c447be0b7779b1621be8be740f1.tar.gz
eclipse.platform.swt-a104ef04f5c11c447be0b7779b1621be8be740f1.tar.xz
eclipse.platform.swt-a104ef04f5c11c447be0b7779b1621be8be740f1.zip
Bug 387245 - Widget.RESIZING value same as Widget.WEBKIT_EVENTS_FIX value
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
index 866a3abeef..0edfe16fff 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
@@ -81,14 +81,14 @@ public abstract class Widget {
static final int RESIZING = 1<<19;
/* WebKit fixes */
- static final int WEBKIT_EVENTS_FIX = 1<<19;
+ static final int WEBKIT_EVENTS_FIX = 1<<20;
static final String WEBKIT_EVENTS_FIX_KEY = "org.eclipse.swt.internal.webKitEventsFix"; //$NON-NLS-1$
static final String GLCONTEXT_KEY = "org.eclipse.swt.internal.cocoa.glcontext"; //$NON-NLS-1$
static final String IS_ACTIVE = "org.eclipse.swt.internal.isActive"; //$NON-NLS-1$
/* Notify of the opportunity to skin this widget */
- static final int SKIN_NEEDED = 1<<20;
+ static final int SKIN_NEEDED = 1<<21;
/* Default size for widgets */
static final int DEFAULT_WIDTH = 64;