diff dwt/graphics/Cursor.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 184ab53b7785
children 36f5cb12e1a2
line wrap: on
line diff
--- a/dwt/graphics/Cursor.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/graphics/Cursor.d	Mon May 05 00:12:38 2008 +0200
@@ -25,6 +25,7 @@
 import dwt.graphics.Image;
 
 import tango.text.convert.Format;
+import dwt.dwthelper.utils;
 
 /**
  * Instances of this class manage operating system resources that
@@ -456,7 +457,7 @@
  *
  * @return a string representation of the receiver
  */
-override public char[] toString () {
+override public String toString () {
     if (isDisposed()) return "Cursor {*DISPOSED*}";
     return Format( "Cursor {{{}}", handle );
 }