summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2010-10-21 15:03:16 +0000
committerFelipe Heidrich <fheidric>2010-10-21 15:03:16 +0000
commit550e8a8e9bc83f6157c95ef4f9d89d7b16a7ca9e (patch)
tree81960ba6dd1ab7b61beb456413f48f904309f688 /bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
parenta4bbd67cab044afd6baa06e06152d08898b8d5a8 (diff)
downloadeclipse.platform.swt-550e8a8e9bc83f6157c95ef4f9d89d7b16a7ca9e.tar.gz
eclipse.platform.swt-550e8a8e9bc83f6157c95ef4f9d89d7b16a7ca9e.tar.xz
eclipse.platform.swt-550e8a8e9bc83f6157c95ef4f9d89d7b16a7ca9e.zip
Bug 328290 - Need some way to intercept 'fixfocus'
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.java14
1 files changed, 0 insertions, 14 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 3320443da4..a05a909eba 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
@@ -1025,20 +1025,6 @@ void setBounds (int x, int y, int width, int height, int flags, boolean defer) {
}
}
-boolean setFixedFocus () {
- checkWidget ();
- Control [] children = _getChildren ();
- for (int i=0; i<children.length; i++) {
- Control child = children [i];
- if (child.setRadioFocus (false)) return true;
- }
- for (int i=0; i<children.length; i++) {
- Control child = children [i];
- if (child.setFixedFocus ()) return true;
- }
- return super.setFixedFocus ();
-}
-
public boolean setFocus () {
checkWidget ();
Control [] children = _getChildren ();