comparison dwt/events/TraverseEvent.d @ 238:380bad9f6852

reverted char[] to String
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:42:55 +0200
parents f2e04420fd6c
children c0d810de7093
comparison
equal deleted inserted replaced
237:98b80b00af79 238:380bad9f6852
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language: 10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de> 11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/ 12 *******************************************************************************/
13 module dwt.events.TraverseEvent; 13 module dwt.events.TraverseEvent;
14
15 import dwt.dwthelper.utils;
14 16
15 17
16 import dwt.widgets.Event; 18 import dwt.widgets.Event;
17 import dwt.events.KeyEvent; 19 import dwt.events.KeyEvent;
18 20
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 }