Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2012-09-28 16:58:28 +0000
committerCarolyn MacLeod2012-09-28 16:59:00 +0000
commitc7591f1f1e20d7e15b4d710292d8c7ad4e89cff4 (patch)
treea2fc456eb62b90e15d2ba10010675acb376dff46
parentaa5a5aaebe142abd891a4f8f1fad06bf51ae6ae6 (diff)
downloadeclipse.platform.swt-c7591f1f1e20d7e15b4d710292d8c7ad4e89cff4.tar.gz
eclipse.platform.swt-c7591f1f1e20d7e15b4d710292d8c7ad4e89cff4.tar.xz
eclipse.platform.swt-c7591f1f1e20d7e15b4d710292d8c7ad4e89cff4.zip
Bug 390713 - Tab traversal broken in 64-bit ToolBar
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java
index f8c9306125..1b1b8f5ae0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java
@@ -476,7 +476,7 @@ public int getRowCount () {
return layout (rect.width, rect.height, false) [0];
}
-boolean hasKeyboardFocus(int inId) {
+boolean hasKeyboardFocus(long /*int*/ inId) {
return hasFocus();
}

Back to the top