comparison dwtx/jface/internal/text/StickyHoverManager.d @ 135:65801ad2b265

Regex fix for anon classes
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:52:31 +0200
parents 51e6e63f930e
children b6bad70d540a
comparison
equal deleted inserted replaced
134:51e6e63f930e 135:65801ad2b265
230 * @see dwt.events.FocusListener#focusLost(dwt.events.FocusEvent) 230 * @see dwt.events.FocusListener#focusLost(dwt.events.FocusEvent)
231 */ 231 */
232 public void focusLost(FocusEvent e) { 232 public void focusLost(FocusEvent e) {
233 if cast(DEBUG) System.out.println("StickyHoverManager.Closer.focusLost(): " + e); //$NON-NLS-1$ 233 if cast(DEBUG) System.out.println("StickyHoverManager.Closer.focusLost(): " + e); //$NON-NLS-1$
234 Display d= fSubjectControl.getDisplay(); 234 Display d= fSubjectControl.getDisplay();
235 d.asyncExec(new Runnable() { 235 d.asyncExec(new class() Runnable {
236 // Without the asyncExec, mouse clicks to the workbench window are swallowed. 236 // Without the asyncExec, mouse clicks to the workbench window are swallowed.
237 public void run() { 237 public void run() {
238 hideInformationControl(); 238 hideInformationControl();
239 } 239 }
240 }); 240 });