diff dwtx/jface/text/AbstractHoverInformationControlManager.d @ 140:26688fec6d23

Following dsss compile errors
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 03:23:46 +0200
parents b6bad70d540a
children 893c017bcdc5
line wrap: on
line diff
--- a/dwtx/jface/text/AbstractHoverInformationControlManager.d	Sun Aug 24 02:31:41 2008 +0200
+++ b/dwtx/jface/text/AbstractHoverInformationControlManager.d	Sun Aug 24 03:23:46 2008 +0200
@@ -305,7 +305,7 @@
             fIsActive= false;
 
             if cast(DEBUG)
-                System.out.println("AbstractHoverInformationControlManager.Closer stopped"); //$NON-NLS-1$
+                System.out_.println("AbstractHoverInformationControlManager.Closer stopped"); //$NON-NLS-1$
 
             if (fSubjectControl !is null && !fSubjectControl.isDisposed()) {
                 fSubjectControl.removeMouseListener(this);
@@ -505,7 +505,7 @@
          */
         private void handleMouseMove(Event event) {
 //          if cast(DEBUG)
-//              System.out.println("AbstractHoverInformationControl.Closer.handleMouseMove():" + event); //$NON-NLS-1$
+//              System.out_.println("AbstractHoverInformationControl.Closer.handleMouseMove():" + event); //$NON-NLS-1$
             
             if (!(event.widget instanceof Control))
                 return;
@@ -519,7 +519,7 @@
             
             IInformationControl iControl= getCurrentInformationControl();
             if (!hasInformationControlReplacer() || !canMoveIntoInformationControl(iControl)) {
-                if (AbstractHoverInformationControlManager.this instanceof AnnotationBarHoverManager) {
+                if (this.outer instanceof AnnotationBarHoverManager) {
                     if (getInternalAccessor().getAllowMouseExit())
                         return;
                 }
@@ -640,7 +640,7 @@
             if (fIsComputing || fIsInRestartMode ||
                     (fSubjectControl !is null && !fSubjectControl.isDisposed() && fSubjectControl.getShell() !is fSubjectControl.getShell().getDisplay().getActiveShell())) {
                 if cast(DEBUG)
-                    System.out.println("AbstractHoverInformationControlManager...mouseHover: @ " + event.x + "/" + event.y + " : hover cancelled: fIsComputing= " + fIsComputing + ", fIsInRestartMode= " + fIsInRestartMode); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+                    System.out_.println("AbstractHoverInformationControlManager...mouseHover: @ " + event.x + "/" + event.y + " : hover cancelled: fIsComputing= " + fIsComputing + ", fIsInRestartMode= " + fIsInRestartMode); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
                 return;
             }
             
@@ -965,11 +965,11 @@
             bool cancelled= fReplacingDelayJob.cancel();
             fReplacingDelayJob= null;
 //          if cast(DEBUG)
-//              System.out.println("AbstractHoverInformationControlManager.cancelReplacingDelay(): cancelled=" + cancelled); //$NON-NLS-1$
+//              System.out_.println("AbstractHoverInformationControlManager.cancelReplacingDelay(): cancelled=" + cancelled); //$NON-NLS-1$
             return cancelled;
         }
 //      if cast(DEBUG)
-//          System.out.println("AbstractHoverInformationControlManager.cancelReplacingDelay(): not delayed"); //$NON-NLS-1$
+//          System.out_.println("AbstractHoverInformationControlManager.cancelReplacingDelay(): not delayed"); //$NON-NLS-1$
         return true;
     }
     
@@ -995,7 +995,7 @@
                             replaceInformationControl(false);
                     } else {
 //                      if cast(DEBUG)
-//                          System.out.println("AbstractHoverInformationControlManager.startReplaceInformationControl(): rescheduled"); //$NON-NLS-1$
+//                          System.out_.println("AbstractHoverInformationControlManager.startReplaceInformationControl(): rescheduled"); //$NON-NLS-1$
                         fReplacingDelayJob.schedule(HOVER_AUTO_REPLACING_DELAY);
                     }
                 }
@@ -1023,7 +1023,7 @@
         fReplacingDelayJob.setSystem(true);
         fReplacingDelayJob.setPriority(Job.INTERACTIVE);
 //      if cast(DEBUG)
-//          System.out.println("AbstractHoverInformationControlManager.startReplaceInformationControl(): scheduled"); //$NON-NLS-1$
+//          System.out_.println("AbstractHoverInformationControlManager.startReplaceInformationControl(): scheduled"); //$NON-NLS-1$
         fReplacingDelayJob.schedule(HOVER_AUTO_REPLACING_DELAY);
     }