diff dwtx/jface/text/source/projection/ProjectionAnnotationHover.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 6dcb0baaa031
line wrap: on
line diff
--- a/dwtx/jface/text/source/projection/ProjectionAnnotationHover.d	Sun Aug 24 01:46:20 2008 +0200
+++ b/dwtx/jface/text/source/projection/ProjectionAnnotationHover.d	Sun Aug 24 01:52:31 2008 +0200
@@ -178,7 +178,7 @@
      */
     public IInformationControlCreator getHoverControlCreator() {
         if (fInformationControlCreator is null) {
-            fInformationControlCreator= new IInformationControlCreator() {
+            fInformationControlCreator= new class()  IInformationControlCreator {
                 public IInformationControl createInformationControl(Shell parent) {
                     return new SourceViewerInformationControl(parent, false, JFaceResources.TEXT_FONT, null);
                 }
@@ -193,7 +193,7 @@
      */
     public IInformationControlCreator getInformationPresenterControlCreator() {
         if (fInformationPresenterControlCreator is null) {
-            fInformationPresenterControlCreator= new IInformationControlCreator() {
+            fInformationPresenterControlCreator= new class()  IInformationControlCreator {
                 public IInformationControl createInformationControl(Shell parent) {
                     return new SourceViewerInformationControl(parent, true, JFaceResources.TEXT_FONT, null);
                 }