Show
Ignore:
Timestamp:
05/04/08 18:12:38 (7 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

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

    r155 r212  
    1919 
    2020import tango.util.Convert; 
     21import dwt.dwthelper.utils; 
    2122 
    2223/** 
     
    8283 * @return a string representation of the event 
    8384 */ 
    84 public override char[] toString() { 
    85     char[] string = super.toString (); 
     85public override String toString() { 
     86    String string = super.toString (); 
    8687    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) 
    9394        ~ "}"; 
    9495}