diff dwtx/jface/text/rules/MultiLineRule.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/rules/MultiLineRule.d	Sun Aug 24 01:13:39 2008 +0200
+++ b/dwtx/jface/text/rules/MultiLineRule.d	Sun Aug 24 01:29:22 2008 +0200
@@ -56,7 +56,7 @@
      * @param endSequence the pattern's end sequence
      * @param token the token to be returned on success
      */
-    public MultiLineRule(String startSequence, String endSequence, IToken token) {
+    public this(String startSequence, String endSequence, IToken token) {
         this(startSequence, endSequence, token, (char) 0);
     }
 
@@ -70,7 +70,7 @@
      * @param token the token to be returned on success
      * @param escapeCharacter the escape character
      */
-    public MultiLineRule(String startSequence, String endSequence, IToken token, char escapeCharacter) {
+    public this(String startSequence, String endSequence, IToken token, char escapeCharacter) {
         this(startSequence, endSequence, token, escapeCharacter, false);
     }
 
@@ -87,7 +87,7 @@
      * @param breaksOnEOF indicates whether the end of the file terminates this rule successfully
      * @since 2.1
      */
-    public MultiLineRule(String startSequence, String endSequence, IToken token, char escapeCharacter, bool breaksOnEOF) {
+    public this(String startSequence, String endSequence, IToken token, char escapeCharacter, bool breaksOnEOF) {
         super(startSequence, endSequence, token, escapeCharacter, false, breaksOnEOF);
     }
 }