diff dwt/graphics/Pattern.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 e10cbfc977d2
children 36f5cb12e1a2
line wrap: on
line diff
--- a/dwt/graphics/Pattern.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/graphics/Pattern.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 represent patterns to use while drawing. Patterns
@@ -272,7 +273,7 @@
  *
  * @return a string representation of the receiver
  */
-override public char[] toString() {
+override public String toString() {
     if (isDisposed()) return "Pattern {*DISPOSED*}";
     return Format( "Pattern {{{}}", handle );
 }