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

(-)Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java (+2 lines)
Lines 2388-2394 Link Here
2388
2388
2389
void releaseWidget () {
2389
void releaseWidget () {
2390
	display.removeMouseHoverTimeout (handle);
2390
	display.removeMouseHoverTimeout (handle);
2391
	boolean hadFocus = display.getFocusControl () == this;
2391
	super.releaseWidget ();
2392
	super.releaseWidget ();
2393
	if (hadFocus) fixFocus (this);
2392
	int /*long*/ imHandle = imHandle ();
2394
	int /*long*/ imHandle = imHandle ();
2393
	if (imHandle != 0) {
2395
	if (imHandle != 0) {
2394
		OS.gtk_im_context_reset (imHandle);
2396
		OS.gtk_im_context_reset (imHandle);

Return to bug 69650