comparison 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
comparison
equal deleted inserted replaced
171:ee33f30b14e2 172:d994a8b2cdf7
60 60
61 /** 61 /**
62 * Creates a new thread. 62 * Creates a new thread.
63 */ 63 */
64 public this() { 64 public this() {
65 thread = new Thread( &run ); 65 thread = new JThread( &run );
66 fProgressMonitor= new NullProgressMonitor(); // might be given by client in the future 66 fProgressMonitor= new NullProgressMonitor(); // might be given by client in the future
67 thread.isDaemon(true); 67 thread.setDaemon(true);
68 thread.start(); 68 thread.start();
69 } 69 }
70 70
71 /** 71 /**
72 * Resets the thread. 72 * Resets the thread.