summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2010-02-04 15:48:16 +0000
committerCarolyn MacLeod <carolyn>2010-02-04 15:48:16 +0000
commit3fa6a2131de587468ca731c20daed9a17f9549e8 (patch)
treea43c8291f3fa9a0c43f8745e514ea6b8536d2fe0 /bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
parent1edf4eee84d4f2cf27e277497eba0ba3f8932735 (diff)
downloadeclipse.platform.swt-3fa6a2131de587468ca731c20daed9a17f9549e8.tar.gz
eclipse.platform.swt-3fa6a2131de587468ca731c20daed9a17f9549e8.tar.xz
eclipse.platform.swt-3fa6a2131de587468ca731c20daed9a17f9549e8.zip
don't need to check for CHILDID_SELF in getChildren and getChild (e.childID is not an IN parameter)
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
index 72230cef5c..e9c5af2c84 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
@@ -1719,7 +1719,6 @@ void initAccessible() {
}
public void getChildCount(AccessibleControlEvent e) {
- if (e.childID != ACC.CHILDID_SELF) return;
e.detail = items.length + EXTRA_CHILD_ID_COUNT;
}
@@ -1791,7 +1790,6 @@ void initAccessible() {
}
public void getChildren(AccessibleControlEvent e) {
- if (e.childID != ACC.CHILDID_SELF) return;
int childIdCount = items.length + EXTRA_CHILD_ID_COUNT;
Object[] children = new Object[childIdCount];
for (int i = 0; i < childIdCount; i++) {