diff dwt/graphics/Point.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 f906dbcacee5
children fd9c62a2998e
line wrap: on
line diff
--- a/dwt/graphics/Point.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/graphics/Point.d	Mon May 05 00:12:38 2008 +0200
@@ -16,6 +16,7 @@
 public import dwt.internal.SerializableCompatibility;
 
 import tango.text.convert.Format;
+import dwt.dwthelper.utils;
 
 /**
  * Instances of this class represent places on the (x, y)
@@ -104,7 +105,7 @@
  *
  * @return a string representation of the point
  */
-override public char[] toString () {
+override public String toString () {
     return Format( "Point {{{}, {}}", x, y );; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
 }