Changeset 212:ab60f3309436 for dwt/events/SelectionEvent.d
- Timestamp:
- 05/04/08 18:12:38 (8 months ago)
- Files:
-
- dwt/events/SelectionEvent.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/events/SelectionEvent.d
r86 r212 19 19 20 20 import tango.text.convert.Format; 21 import dwt.dwthelper.utils; 22 21 23 /** 22 24 * Instances of this class are sent as a result of … … 93 95 * @since 3.1 94 96 */ 95 public char[]text;97 public String text; 96 98 97 99 /** … … 129 131 * @return a string representation of the event 130 132 */ 131 public override char[]toString() {133 public override String toString() { 132 134 return Format( "{} item={} detail={} x={} y={} width={} height={} stateMask={} text={} doit={}}", 133 135 super.toString[ 0 .. $-2 ],
