*/
private void computeHintOffset(Control control) {
if (control instanceof Composite) {
// For composites, subtract off the trim size
Composite composite = (Composite) control;
Rectangle trim = composite.computeTrim(0, 0, 0, 0);
widthAdjustment = trim.width;
heightAdjustment = trim.height;
} else {
// For non-composites, subtract off 2 * the border size