diff dwtx/jface/text/AbstractInformationControlManager.d @ 137:25170b5a8951

Regex this.outer change
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 02:22:48 +0200
parents 65801ad2b265
children b6bad70d540a
line wrap: on
line diff
--- a/dwtx/jface/text/AbstractInformationControlManager.d	Sun Aug 24 02:20:40 2008 +0200
+++ b/dwtx/jface/text/AbstractInformationControlManager.d	Sun Aug 24 02:22:48 2008 +0200
@@ -205,31 +205,31 @@
      */
     class MyInternalAccessor : InternalAccessor {
         public IInformationControl getCurrentInformationControl() {
-            return AbstractInformationControlManager.this.getCurrentInformationControl();
+            return this.outer.getCurrentInformationControl();
         }
         
         public void setInformationControlReplacer(InformationControlReplacer replacer) {
-            AbstractInformationControlManager.this.setInformationControlReplacer(replacer);
+            this.outer.setInformationControlReplacer(replacer);
         }
         
         public InformationControlReplacer getInformationControlReplacer() {
-            return AbstractInformationControlManager.this.getInformationControlReplacer();
+            return this.outer.getInformationControlReplacer();
         }
         
         public bool canReplace(IInformationControl control) {
-            return AbstractInformationControlManager.this.canReplace(control);
+            return this.outer.canReplace(control);
         }
         
         public bool isReplaceInProgress() {
-            return AbstractInformationControlManager.this.isReplaceInProgress();
+            return this.outer.isReplaceInProgress();
         }
         
         public void replaceInformationControl(bool takeFocus) {
-            AbstractInformationControlManager.this.replaceInformationControl(takeFocus);
+            this.outer.replaceInformationControl(takeFocus);
         }
 
         public void cropToClosestMonitor(Rectangle bounds) {
-            AbstractInformationControlManager.this.cropToClosestMonitor(bounds);
+            this.outer.cropToClosestMonitor(bounds);
         }
         
         public void setHoverEnrichMode(EnrichMode mode) {