diff dwt/graphics/RGB.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 9a64a7781bab
children fd9c62a2998e
line wrap: on
line diff
--- a/dwt/graphics/RGB.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/graphics/RGB.d	Mon May 05 00:12:38 2008 +0200
@@ -17,6 +17,7 @@
 import dwt.DWT;
 import Math = tango.math.Math : min, max;
 import tango.text.convert.Format;
+import dwt.dwthelper.utils;
 
 /**
  * Instances of this class are descriptions of colors in
@@ -223,7 +224,7 @@
  *
  * @return a String representation of the <code>RGB</code>
  */
-public override char[] toString() {
+public override String toString() {
     return Format( "RGB {{{}, {}, {}}", red, green, blue ); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
 }