summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
diff options
context:
space:
mode:
authorSteve Northover <steve>2008-06-18 20:55:14 +0000
committerSteve Northover <steve>2008-06-18 20:55:14 +0000
commit6cb5941df497f336dbd1a94de00d16dc57f30482 (patch)
treefb41a877315ee1170242f6e6ac9797b89aa6f6f1 /bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
parentf726f3b937246596691fe1f6a00aef17ede89a20 (diff)
downloadeclipse.platform.swt-6cb5941df497f336dbd1a94de00d16dc57f30482.tar.gz
eclipse.platform.swt-6cb5941df497f336dbd1a94de00d16dc57f30482.tar.xz
eclipse.platform.swt-6cb5941df497f336dbd1a94de00d16dc57f30482.zip
54525 - Radio group gets traversed (gets focus) when not visible
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
index 1a79a1d907..de17ebacc6 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
@@ -904,7 +904,7 @@ boolean setFixedFocus () {
Control [] children = _getChildren ();
for (int i=0; i<children.length; i++) {
Control child = children [i];
- if (child.setRadioFocus ()) return true;
+ if (child.setRadioFocus (false)) return true;
}
for (int i=0; i<children.length; i++) {
Control child = children [i];
@@ -918,7 +918,7 @@ public boolean setFocus () {
Control [] children = _getChildren ();
for (int i=0; i<children.length; i++) {
Control child = children [i];
- if (child.setRadioFocus ()) return true;
+ if (child.setRadioFocus (false)) return true;
}
for (int i=0; i<children.length; i++) {
Control child = children [i];
@@ -1032,7 +1032,7 @@ boolean setTabGroupFocus () {
Control [] children = _getChildren ();
for (int i=0; i<children.length; i++) {
Control child = children [i];
- if (child.isTabItem () && child.setRadioFocus ()) return true;
+ if (child.isTabItem () && child.setRadioFocus (true)) return true;
}
for (int i=0; i<children.length; i++) {
Control child = children [i];