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

    r188 r238  
    1212 *******************************************************************************/ 
    1313module dwt.graphics.Point; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    105107 * @return a string representation of the point 
    106108 */ 
    107 override public char[] toString () { 
     109override public String toString () { 
    108110    return Format( "Point {{{}, {}}", x, y );; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ 
    109111}