Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2002-06-19 16:05:02 +0000
committerSilenio Quarti2002-06-19 16:05:02 +0000
commit6f63c24e373499ea53f00a7791184f797694d4b8 (patch)
tree3caa6c265b9275f3e9d14ccb2bfe8ad3931218dd
parent216f80036a3154d0a3d49fedbd88db339bcb1e8b (diff)
downloadeclipse.platform.swt-6f63c24e373499ea53f00a7791184f797694d4b8.tar.gz
eclipse.platform.swt-6f63c24e373499ea53f00a7791184f797694d4b8.tar.xz
eclipse.platform.swt-6f63c24e373499ea53f00a7791184f797694d4b8.zip
20398
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Shell.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Shell.java b/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Shell.java
index ddb57acab7..463b0b4fa1 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Shell.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Shell.java
@@ -415,6 +415,7 @@ void createHandle (int index) {
int clazz = display.PtContainer;
int [] args = {
OS.Pt_ARG_FILL_COLOR, OS.Pg_TRANSPARENT, 0,
+ OS.Pt_ARG_CONTAINER_FLAGS, OS.Pt_HOTKEYS_FIRST, OS.Pt_HOTKEYS_FIRST,
OS.Pt_ARG_RESIZE_FLAGS, 0, OS.Pt_RESIZE_XY_BITS,
};
shellHandle = OS.PtCreateWidget (clazz, handle, args.length / 3, args);
@@ -457,6 +458,7 @@ void createHandle (int index) {
OS.Pt_ARG_WINDOW_STATE, windowState, ~0,
OS.Pt_ARG_FLAGS, OS.Pt_DELAY_REALIZE, OS.Pt_DELAY_REALIZE,
OS.Pt_ARG_FILL_COLOR, OS.Pg_TRANSPARENT, 0,
+ OS.Pt_ARG_CONTAINER_FLAGS, OS.Pt_HOTKEYS_FIRST, OS.Pt_HOTKEYS_FIRST,
OS.Pt_ARG_RESIZE_FLAGS, 0, OS.Pt_RESIZE_XY_BITS,
};
OS.PtSetParentWidget (parentHandle);

Back to the top