Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover2002-01-23 18:55:00 +0000
committerSteve Northover2002-01-23 18:55:00 +0000
commit11f609916da1d4c552849ba34da4a2ae6b15af9e (patch)
tree95642722f84d01ba3074e60ef88d13331cf06a9d
parent64abf3fa32844fc21a1b9512e383a76df55d21f8 (diff)
downloadeclipse.platform.swt-11f609916da1d4c552849ba34da4a2ae6b15af9e.tar.gz
eclipse.platform.swt-11f609916da1d4c552849ba34da4a2ae6b15af9e.tar.xz
eclipse.platform.swt-11f609916da1d4c552849ba34da4a2ae6b15af9e.zip
*** empty log message ***
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java2
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java
index 50598334c5..fcecd6382c 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java
@@ -143,7 +143,7 @@ public Point computeSize (int wHint, int hHint, boolean changed) {
Control [] computeTabList () {
Control result [] = super.computeTabList ();
if (result.length == 0) return result;
- Control [] list = tabList != null ? tabList : _getChildren ();
+ Control [] list = tabList != null ? _getTabList () : _getChildren ();
for (int i=0; i<list.length; i++) {
Control child = list [i];
Control [] childList = child.computeTabList ();
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 095732b02c..57c57c05a8 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
@@ -120,7 +120,7 @@ protected void checkSubclass () {
Control [] computeTabList () {
Control result [] = super.computeTabList ();
if (result.length == 0) return result;
- Control [] list = tabList != null ? tabList : _getChildren ();
+ Control [] list = tabList != null ? _getTabList () : _getChildren ();
for (int i=0; i<list.length; i++) {
Control child = list [i];
Control [] childList = child.computeTabList ();

Back to the top