Changeset 212:ab60f3309436 for dwt/graphics/Color.d
- Timestamp:
- 05/04/08 18:12:38 (8 months ago)
- Files:
-
- dwt/graphics/Color.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/Color.d
r197 r212 22 22 23 23 import tango.text.convert.Format; 24 import dwt.dwthelper.utils; 24 25 25 26 /** … … 318 319 * @return a string representation of the receiver 319 320 */ 320 override public char[]toString () {321 override public String toString () { 321 322 if (isDisposed()) return "Color {*DISPOSED*}"; //$NON-NLS-1$ 322 323 return Format( "Color {{{}, {}, {}}", getRed(), getGreen(), getBlue()); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
