View | Details | Raw Unified | Return to bug 229839
Collapse All | Expand All

(-)Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java (-1 / +1 lines)
Lines 472-478 Link Here
472
	return tabList;
472
	return tabList;
473
}
473
}
474
474
475
boolean hooksKeys () {
475
protected boolean hooksKeys () {
476
	return hooks (SWT.KeyDown) || hooks (SWT.KeyUp);
476
	return hooks (SWT.KeyDown) || hooks (SWT.KeyUp);
477
}
477
}
478
478
(-)Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java (+5 lines)
Lines 846-851 Link Here
846
		}
846
		}
847
	}
847
	}
848
}
848
}
849
850
protected boolean hooksKeys () {
851
	return false;
852
}
853
849
/**
854
/**
850
 * Searches the receiver's list starting at the first item
855
 * Searches the receiver's list starting at the first item
851
 * (index 0) until an item is found that is equal to the 
856
 * (index 0) until an item is found that is equal to the 

Return to bug 229839