comparison dwt/custom/BusyIndicator.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 184ab53b7785
children fd9c62a2998e
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
25 * Support for showing a Busy Cursor during a long running process. 25 * Support for showing a Busy Cursor during a long running process.
26 */ 26 */
27 public class BusyIndicator { 27 public class BusyIndicator {
28 28
29 static int nextBusyId = 1; 29 static int nextBusyId = 1;
30 static const char[] BUSYID_NAME = "DWT BusyIndicator"; //$NON-NLS-1$ 30 static const String BUSYID_NAME = "DWT BusyIndicator"; //$NON-NLS-1$
31 static const char[] BUSY_CURSOR = "DWT BusyIndicator Cursor"; //$NON-NLS-1$ 31 static const String BUSY_CURSOR = "DWT BusyIndicator Cursor"; //$NON-NLS-1$
32 32
33 /** 33 /**
34 * Runs the given <code>Runnable</code> while providing 34 * Runs the given <code>Runnable</code> while providing
35 * busy feedback using this busy indicator. 35 * busy feedback using this busy indicator.
36 * 36 *