Show
Ignore:
Timestamp:
05/04/08 18:42:55 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted char[] to String

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/custom/CTabFolderEvent.d

    r150 r238  
    1212 *******************************************************************************/ 
    1313module dwt.custom.CTabFolderEvent; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    8284 * @return a string representation of the event 
    8385 */ 
    84 public override char[] toString() { 
    85     char[] string = super.toString (); 
     86public override String toString() { 
     87    String string = super.toString (); 
    8688    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) 
    9395        ~ "}"; 
    9496}