Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 291128 | Differences between
and this patch

Collapse All | Expand All

(-)Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java (-1 / +6 lines)
Lines 1176-1182 Link Here
1176
	}
1176
	}
1177
1177
1178
	static AccessibleObject getAccessibleObject (int /*long*/ atkObject) {
1178
	static AccessibleObject getAccessibleObject (int /*long*/ atkObject) {
1179
		return (AccessibleObject)AccessibleObjects.get (new LONG (atkObject));
1179
		AccessibleObject object = (AccessibleObject)AccessibleObjects.get (new LONG (atkObject));
1180
		if (object == null) return null;
1181
		if (object.accessible == null) return null;
1182
		Control control = object.accessible.control;
1183
		if (control == null || control.isDisposed()) return null;
1184
		return object;
1180
	}
1185
	}
1181
	
1186
	
1182
	AccessibleObject getChildByHandle (int /*long*/ handle) {
1187
	AccessibleObject getChildByHandle (int /*long*/ handle) {

Return to bug 291128