diff dwtx/jface/text/AbstractInformationControl.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
line wrap: on
line diff
--- a/dwtx/jface/text/AbstractInformationControl.d	Sun Aug 24 01:13:39 2008 +0200
+++ b/dwtx/jface/text/AbstractInformationControl.d	Sun Aug 24 01:29:22 2008 +0200
@@ -254,7 +254,7 @@
      * @param parentShell the parent of this control's shell
      * @param statusFieldText the text to be used in the status field or <code>null</code> to hide the status field
      */
-    public AbstractInformationControl(Shell parentShell, String statusFieldText) {
+    public this(Shell parentShell, String statusFieldText) {
         this(parentShell, DWT.TOOL | DWT.ON_TOP, statusFieldText, null);
     }
 
@@ -269,7 +269,7 @@
      * @param parentShell the parent of this control's shell
      * @param toolBarManager the manager or <code>null</code> if toolbar is not desired
      */
-    public AbstractInformationControl(Shell parentShell, ToolBarManager toolBarManager) {
+    public this(Shell parentShell, ToolBarManager toolBarManager) {
         this(parentShell, DWT.TOOL | DWT.ON_TOP | DWT.RESIZE, null, toolBarManager);
     }
 
@@ -282,7 +282,7 @@
      * @param parentShell the parent of this control's shell
      * @param isResizable <code>true</code> if the control should be resizable
      */
-    public AbstractInformationControl(Shell parentShell, bool isResizable) {
+    public this(Shell parentShell, bool isResizable) {
         this(parentShell, DWT.TOOL | DWT.ON_TOP | (isResizable ? DWT.RESIZE : 0), null, null);
     }
 
@@ -304,7 +304,7 @@
      * 
      * @deprecated clients should use one of the public constructors
      */
-    AbstractInformationControl(Shell parentShell, int shellStyle, final String statusFieldText, final ToolBarManager toolBarManager) {
+    this(Shell parentShell, int shellStyle, final String statusFieldText, final ToolBarManager toolBarManager) {
         Assert.isTrue(statusFieldText is null || toolBarManager is null);
         fResizeHandleSize= -1;
         fToolBarManager= toolBarManager;