summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt
diff options
context:
space:
mode:
authorCarolyn MacLeod <Carolyn_MacLeod@ca.ibm.com>2011-11-22 12:43:50 -0500
committerCarolyn MacLeod <Carolyn_MacLeod@ca.ibm.com>2011-11-22 12:43:50 -0500
commitc11e164f0f009e765b486f10bb1ae4014de551f7 (patch)
tree033ec256c0362a464a5425596665b3c32cfac1c0 /bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt
parentb4900c85b68770c95704598e281f5c46fcfa7d2e (diff)
downloadeclipse.platform.swt-c11e164f0f009e765b486f10bb1ae4014de551f7.tar.gz
eclipse.platform.swt-c11e164f0f009e765b486f10bb1ae4014de551f7.tar.xz
eclipse.platform.swt-c11e164f0f009e765b486f10bb1ae4014de551f7.zip
Bug 293698 - [Accessibility] Inspect32/JAWS does not display correct
info after closing context/view menu (64 bit fix)
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java
index 0fbe399faf..6faec077a5 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java
@@ -265,7 +265,7 @@ void _setVisible (boolean visible) {
* is not returned to the focus control. This causes confusion for AT users.
* The fix is to explicitly set the accessibility focus back to the focus control.
*/
- int hFocus = OS.GetFocus();
+ int /*long*/ hFocus = OS.GetFocus();
if (hFocus != 0) {
OS.NotifyWinEvent (OS.EVENT_OBJECT_FOCUS, hFocus, OS.OBJID_CLIENT, 0);
}