Changeset 238:380bad9f6852 for dwt/widgets/Event.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/widgets/Event.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/widgets/Event.d
r236 r238 12 12 *******************************************************************************/ 13 13 module dwt.widgets.Event; 14 15 import dwt.dwthelper.utils; 14 16 15 17 import dwt.graphics.GC; … … 181 183 * be inserted or deleted. 182 184 */ 183 public char[]text;185 public String text; 184 186 185 187 /** … … 222 224 * @return a string representation of the event 223 225 */ 224 public override char[]toString () {226 public override String toString () { 225 227 return Format( "Event {{type={} {} time={} data={} x={} y={} width={} height={} detail={}}", 226 228 type, widget, time, data, x, y, width, height, detail ); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$
