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/RGB.d

    r188 r238  
    1212 *******************************************************************************/ 
    1313module dwt.graphics.RGB; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517public import dwt.internal.SerializableCompatibility; 
     
    224226 * @return a String representation of the <code>RGB</code> 
    225227 */ 
    226 public override char[] toString() { 
     228public override String toString() { 
    227229    return Format( "RGB {{{}, {}, {}}", red, green, blue ); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ 
    228230}