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

    r177 r238  
    1212 *******************************************************************************/ 
    1313module dwt.graphics.Rectangle; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517public import dwt.graphics.Point; 
     
    314316 * @return a string representation of the rectangle 
    315317 */ 
    316 public override char[] toString () { 
     318public override String toString () { 
    317319    return Format( "Rectangle {{{}, {}, {}, {}}", x, y, width, height ); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ 
    318320}