Changeset 238:380bad9f6852 for dwt/graphics/RGB.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/graphics/RGB.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/graphics/RGB.d
r188 r238 12 12 *******************************************************************************/ 13 13 module dwt.graphics.RGB; 14 15 import dwt.dwthelper.utils; 14 16 15 17 public import dwt.internal.SerializableCompatibility; … … 224 226 * @return a String representation of the <code>RGB</code> 225 227 */ 226 public override char[]toString() {228 public override String toString() { 227 229 return Format( "RGB {{{}, {}, {}}", red, green, blue ); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ 228 230 }
