diff options
| author | Carolyn MacLeod | 2012-09-28 16:58:28 +0000 |
|---|---|---|
| committer | Carolyn MacLeod | 2012-09-28 17:04:04 +0000 |
| commit | 3649a7ae63eaec610bae940d5602e16db33ad6ce (patch) | |
| tree | 09b5fd6a1709e49ca678d73a1e53842b2dd4201a | |
| parent | 501a268ae2f265d80092d4b2d7e7646d050c14fa (diff) | |
| download | eclipse.platform.swt-3649a7ae63eaec610bae940d5602e16db33ad6ce.tar.gz eclipse.platform.swt-3649a7ae63eaec610bae940d5602e16db33ad6ce.tar.xz eclipse.platform.swt-3649a7ae63eaec610bae940d5602e16db33ad6ce.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.java | 2 |
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(); } |
