Changeset 238:380bad9f6852 for dwt/graphics/Point.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/graphics/Point.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/Point.d
r188 r238 12 12 *******************************************************************************/ 13 13 module dwt.graphics.Point; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 105 107 * @return a string representation of the point 106 108 */ 107 override public char[]toString () {109 override public String toString () { 108 110 return Format( "Point {{{}, {}}", x, y );; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ 109 111 }
