Changeset 238:380bad9f6852 for dwt/custom/CTabFolderEvent.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/custom/CTabFolderEvent.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/custom/CTabFolderEvent.d
r150 r238 12 12 *******************************************************************************/ 13 13 module dwt.custom.CTabFolderEvent; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 82 84 * @return a string representation of the event 83 85 */ 84 public override char[]toString() {85 char[]string = super.toString ();86 public override String toString() { 87 String string = super.toString (); 86 88 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)89 ~ " item=" ~ to!(String)(item) 90 ~ " doit=" ~ to!(String)(doit) 91 ~ " x=" ~ to!(String)(x) 92 ~ " y=" ~ to!(String)(y) 93 ~ " width=" ~ to!(String)(width) 94 ~ " height=" ~ to!(String)(height) 93 95 ~ "}"; 94 96 }
