Changeset 238:380bad9f6852 for dwt/events/SelectionEvent.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/events/SelectionEvent.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/events/SelectionEvent.d
r150 r238 12 12 *******************************************************************************/ 13 13 module dwt.events.SelectionEvent; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 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 ],
