comparison dwt/events/TraverseEvent.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.KeyEvent; 17 import dwt.events.KeyEvent;
18 18
19 import tango.text.convert.Format; 19 import tango.text.convert.Format;
20 import dwt.dwthelper.utils;
21
20 /** 22 /**
21 * Instances of this class are sent as a result of 23 * Instances of this class are sent as a result of
22 * widget traversal actions. 24 * widget traversal actions.
23 * <p> 25 * <p>
24 * The traversal event allows fine control over keyboard traversal 26 * The traversal event allows fine control over keyboard traversal
129 * Returns a string containing a concise, human-readable 131 * Returns a string containing a concise, human-readable
130 * description of the receiver. 132 * description of the receiver.
131 * 133 *
132 * @return a string representation of the event 134 * @return a string representation of the event
133 */ 135 */
134 public override char[] toString() { 136 public override String toString() {
135 return Format( "{} detail={}}", super.toString[ 0 .. $-2 ], detail ); 137 return Format( "{} detail={}}", super.toString[ 0 .. $-2 ], detail );
136 } 138 }
137 } 139 }