Changeset 212:ab60f3309436 for dwt/custom/CTabFolderEvent.d
- Timestamp:
- 05/04/08 18:12:38 (7 months ago)
- Files:
-
- dwt/custom/CTabFolderEvent.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/custom/CTabFolderEvent.d
r155 r212 19 19 20 20 import tango.util.Convert; 21 import dwt.dwthelper.utils; 21 22 22 23 /** … … 82 83 * @return a string representation of the event 83 84 */ 84 public override char[]toString() {85 char[]string = super.toString ();85 public override String toString() { 86 String string = super.toString (); 86 87 return string[0.. $ - 1] // remove trailing '}' 87 ~ " item=" ~ to!( char[])(item)88 ~ " doit=" ~ to!( char[])(doit)89 ~ " x=" ~ to!( char[])(x)90 ~ " y=" ~ to!( char[])(y)91 ~ " width=" ~ to!( char[])(width)92 ~ " height=" ~ to!( char[])(height)88 ~ " item=" ~ to!(String)(item) 89 ~ " doit=" ~ to!(String)(doit) 90 ~ " x=" ~ to!(String)(x) 91 ~ " y=" ~ to!(String)(y) 92 ~ " width=" ~ to!(String)(width) 93 ~ " height=" ~ to!(String)(height) 93 94 ~ "}"; 94 95 }
