comparison dwtx/jface/text/source/LineChangeHover.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
384 /* 384 /*
385 * @see dwtx.jface.text.information.IInformationProviderExtension2#getInformationPresenterControlCreator() 385 * @see dwtx.jface.text.information.IInformationProviderExtension2#getInformationPresenterControlCreator()
386 * @since 3.2 386 * @since 3.2
387 */ 387 */
388 public IInformationControlCreator getInformationPresenterControlCreator() { 388 public IInformationControlCreator getInformationPresenterControlCreator() {
389 return new IInformationControlCreator() { 389 return new class() IInformationControlCreator {
390 public IInformationControl createInformationControl(Shell parent) { 390 public IInformationControl createInformationControl(Shell parent) {
391 return new DefaultInformationControl(parent, cast(ToolBarManager)null, null); 391 return new DefaultInformationControl(parent, cast(ToolBarManager)null, null);
392 } 392 }
393 }; 393 };
394 } 394 }