Changeset 238:380bad9f6852 for dwt/graphics/Color.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/graphics/Color.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/Color.d
r216 r238 12 12 *******************************************************************************/ 13 13 module dwt.graphics.Color; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 301 303 * @return a string representation of the receiver 302 304 */ 303 public override char[]toString () {305 public override String toString () { 304 306 if (isDisposed()) return "Color {*DISPOSED*}"; 305 307 return Format( "Color {{{}, {}, {}}", getRed(), getGreen(), getBlue());
