diff dwtx/jface/text/source/projection/ProjectionSummary.d @ 172:d994a8b2cdf7

again compile fixes
author Frank Benoit <benoit@tionex.de>
date Wed, 10 Sep 2008 23:14:02 +0200
parents 862b05e0334a
children
line wrap: on
line diff
--- a/dwtx/jface/text/source/projection/ProjectionSummary.d	Wed Sep 10 22:45:07 2008 +0200
+++ b/dwtx/jface/text/source/projection/ProjectionSummary.d	Wed Sep 10 23:14:02 2008 +0200
@@ -62,9 +62,9 @@
          * Creates a new thread.
          */
         public this() {
-            thread = new Thread( &run );
+            thread = new JThread( &run );
             fProgressMonitor= new NullProgressMonitor(); // might be given by client in the future
-            thread.isDaemon(true);
+            thread.setDaemon(true);
             thread.start();
         }