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/graphics/Color.d

    r216 r238  
    1212 *******************************************************************************/ 
    1313module dwt.graphics.Color; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    301303 * @return a string representation of the receiver 
    302304 */ 
    303 public override char[] toString () { 
     305public override String toString () { 
    304306    if (isDisposed()) return "Color {*DISPOSED*}"; 
    305307    return Format( "Color {{{}, {}, {}}", getRed(), getGreen(), getBlue());