diff dwt/graphics/Cursor.d @ 238:380bad9f6852

reverted char[] to String
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:42:55 +0200
parents b6bee07cfc0b
children ce446666f5a2
line wrap: on
line diff
--- a/dwt/graphics/Cursor.d	Sat Apr 26 10:01:30 2008 +0200
+++ b/dwt/graphics/Cursor.d	Mon May 05 00:42:55 2008 +0200
@@ -12,6 +12,8 @@
  *******************************************************************************/
 module dwt.graphics.Cursor;
 
+import dwt.dwthelper.utils;
+
 
 import dwt.DWT;
 import dwt.graphics.Resource;
@@ -544,7 +546,7 @@
  *
  * @return a string representation of the receiver
  */
-public override char[] toString () {
+public override String toString () {
     if (isDisposed()) return "Cursor {*DISPOSED*}";
     return Format( "Cursor {{{}}", handle );
 }