Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2012-09-28 16:58:28 +0000
committerCarolyn MacLeod2012-09-28 17:49:23 +0000
commit044ebe3faf005aec37cf80cadee96a95a1aa8702 (patch)
tree13860d710cc43db3981ab18cdf217ab65dfe23fb
parentd6cbc21753a367e6e0c98bbb28e7c0a864eef716 (diff)
downloadeclipse.platform.swt-044ebe3faf005aec37cf80cadee96a95a1aa8702.tar.gz
eclipse.platform.swt-044ebe3faf005aec37cf80cadee96a95a1aa8702.tar.xz
eclipse.platform.swt-044ebe3faf005aec37cf80cadee96a95a1aa8702.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 4de8091353..c08a65c55a 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