diff dwt/events/SelectionEvent.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 bef1ed4ebc50
children fd9c62a2998e
line wrap: on
line diff
--- a/dwt/events/SelectionEvent.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/events/SelectionEvent.d	Mon May 05 00:12:38 2008 +0200
@@ -18,6 +18,8 @@
 import dwt.events.TypedEvent;
 
 import tango.text.convert.Format;
+import dwt.dwthelper.utils;
+
 /**
  * Instances of this class are sent as a result of
  * widgets being selected.
@@ -92,7 +94,7 @@
      * @see dwt.widgets.Link#setText(String)
      * @since 3.1
      */
-    public char[] text;
+    public String text;
 
     /**
      * A flag indicating whether the operation should be allowed.
@@ -128,7 +130,7 @@
  *
  * @return a string representation of the event
  */
-public override char[] toString() {
+public override String toString() {
     return Format( "{} item={} detail={} x={} y={} width={} height={} stateMask={} text={} doit={}}",
         super.toString[ 0 .. $-2 ],
         item,