comparison dwtx/jface/text/TextViewer.d @ 172:d994a8b2cdf7

again compile fixes
author Frank Benoit <benoit@tionex.de>
date Wed, 10 Sep 2008 23:14:02 +0200
parents 862b05e0334a
children c6d7b1ea700b
comparison
equal deleted inserted replaced
171:ee33f30b14e2 172:d994a8b2cdf7
4346 4346
4347 void threadrun() { 4347 void threadrun() {
4348 styledTextPrinter.run(); 4348 styledTextPrinter.run();
4349 printer.dispose(); 4349 printer.dispose();
4350 } 4350 }
4351 Thread printingThread= new Thread( &threadrun ); 4351 JThread printingThread= new JThread( &threadrun );
4352 printingThread.name = "Printing"; //$NON-NLS-1$ 4352 printingThread.setName( "Printing" ); //$NON-NLS-1$
4353 printingThread.start(); 4353 printingThread.start();
4354 } 4354 }
4355 } 4355 }
4356 4356
4357 /** 4357 /**