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

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents 7926b636c282
children
line wrap: on
line diff
--- a/dwtx/jface/text/ListLineTracker.d	Wed Aug 27 14:49:30 2008 +0200
+++ b/dwtx/jface/text/ListLineTracker.d	Mon Sep 08 00:51:37 2008 +0200
@@ -177,7 +177,7 @@
 abstract class ListLineTracker : ILineTracker {
 
     /** The line information */
-    private const List fLines= new ArrayList();
+    private const List fLines;
     /** The length of the tracked text */
     private int fTextLength;
 
@@ -185,6 +185,7 @@
      * Creates a new line tracker.
      */
     protected this() {
+        fLines= new ArrayList();
     }
 
     /**