comparison dwt/events/ShellEvent.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 bef1ed4ebc50
children fd9c62a2998e
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
15 15
16 import dwt.widgets.Event; 16 import dwt.widgets.Event;
17 import dwt.events.TypedEvent; 17 import dwt.events.TypedEvent;
18 18
19 import tango.text.convert.Format; 19 import tango.text.convert.Format;
20 import dwt.dwthelper.utils;
20 21
21 /** 22 /**
22 * Instances of this class are sent as a result of 23 * Instances of this class are sent as a result of
23 * operations being performed on shells. 24 * operations being performed on shells.
24 * 25 *
50 * Returns a string containing a concise, human-readable 51 * Returns a string containing a concise, human-readable
51 * description of the receiver. 52 * description of the receiver.
52 * 53 *
53 * @return a string representation of the event 54 * @return a string representation of the event
54 */ 55 */
55 public override char[] toString() { 56 public override String toString() {
56 return Format( "{} doit={}}", super.toString[ 0 .. $-2 ], doit ); 57 return Format( "{} doit={}}", super.toString[ 0 .. $-2 ], doit );
57 } 58 }
58 } 59 }
59 60