diff dwtx/jface/text/source/SourceViewerConfiguration.d @ 162:1a5b8f8129df

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents 25f1f92fa3df
children
line wrap: on
line diff
--- a/dwtx/jface/text/source/SourceViewerConfiguration.d	Wed Aug 27 14:49:30 2008 +0200
+++ b/dwtx/jface/text/source/SourceViewerConfiguration.d	Mon Sep 08 00:51:37 2008 +0200
@@ -134,7 +134,7 @@
      * specification of this class' methods.
      */
     public this() {
-        super();
+//         super();
     }
 
     /**
@@ -303,11 +303,11 @@
         for (int i= 0; i <= tabWidth; i++) {
             char[] spaceChars= new char[i];
             Arrays.fill(spaceChars, ' ');
-            String spaces= new String(spaceChars);
+            String spaces= new_String(spaceChars);
             if (i < tabWidth)
-                indentPrefixes[i]= spaces + '\t';
+                indentPrefixes[i]= spaces ~ '\t';
             else
-                indentPrefixes[i]= new String(spaces);
+                indentPrefixes[i]= new_String(spaces);
         }
         indentPrefixes[tabWidth + 1]= ""; //$NON-NLS-1$
         return indentPrefixes;