diff dwtx/jface/text/hyperlink/MultipleHyperlinkPresenter.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/hyperlink/MultipleHyperlinkPresenter.d	Sun Aug 24 01:13:39 2008 +0200
+++ b/dwtx/jface/text/hyperlink/MultipleHyperlinkPresenter.d	Sun Aug 24 01:29:22 2008 +0200
@@ -142,7 +142,7 @@
          * @param foregroundColor the foreground color, must not be disposed
          * @param backgroundColor the background color, must not be disposed
          */
-        public LinkListInformationControl(Shell parentShell, MultipleHyperlinkHoverManager manager, Color foregroundColor, Color backgroundColor) {
+        public this(Shell parentShell, MultipleHyperlinkHoverManager manager, Color foregroundColor, Color backgroundColor) {
             super(parentShell, false);
             fManager= manager;
             fForegroundColor= foregroundColor;
@@ -524,7 +524,7 @@
          * @param viewer the viewer to show the hover in
          * @param hyperlinkPresenter the hyperlink presenter using this manager to present hyperlinks
          */
-        public MultipleHyperlinkHoverManager(MultipleHyperlinkHover hover, ITextViewer viewer, MultipleHyperlinkPresenter hyperlinkPresenter) {
+        public this(MultipleHyperlinkHover hover, ITextViewer viewer, MultipleHyperlinkPresenter hyperlinkPresenter) {
             super(hover.getHoverControlCreator());
             
             fHover= hover;
@@ -665,7 +665,7 @@
      *
      * @param store the preference store
      */
-    public MultipleHyperlinkPresenter(IPreferenceStore store) {
+    public this(IPreferenceStore store) {
         super(store);
     }
     
@@ -674,7 +674,7 @@
      *
      * @param color the hyperlink color, to be disposed by the caller
      */
-    public MultipleHyperlinkPresenter(RGB color) {
+    public this(RGB color) {
         super(color);
     }