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 317390
Collapse All | Expand All

(-)Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java (-2 / +2 lines)
Lines 2095-2103 Link Here
2095
			return COM.S_FALSE;
2095
			return COM.S_FALSE;
2096
		}
2096
		}
2097
		if (childID == ACC.CHILDID_SELF) {
2097
		if (childID == ACC.CHILDID_SELF) {
2098
			if (DEBUG) print(this + ".IAccessible::get_accFocus() returning accessible " + getAddress() + hresult(COM.S_OK));
2098
			if (DEBUG) print(this + ".IAccessible::get_accFocus() returning CHILDID_SELF " + hresult(COM.S_OK));
2099
			AddRef();
2099
			AddRef();
2100
			setPtrVARIANT(pvarChild, COM.VT_DISPATCH, getAddress());
2100
			setIntVARIANT(pvarChild, COM.VT_I4, COM.CHILDID_SELF);
2101
			return COM.S_OK;
2101
			return COM.S_OK;
2102
		}
2102
		}
2103
		if (DEBUG) print(this + ".IAccessible::get_accFocus() returning childID " + childIDToOs(childID) + hresult(COM.S_OK));
2103
		if (DEBUG) print(this + ".IAccessible::get_accFocus() returning childID " + childIDToOs(childID) + hresult(COM.S_OK));

Return to bug 317390