diff dwt/events/MenuDetectEvent.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/MenuDetectEvent.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/events/MenuDetectEvent.d	Mon May 05 00:12:38 2008 +0200
@@ -17,6 +17,8 @@
 import dwt.events.TypedEvent;
 
 import tango.text.convert.Format;
+import dwt.dwthelper.utils;
+
 /**
  * Instances of this class are sent whenever the platform-
  * specific trigger for showing a context menu is detected.
@@ -67,7 +69,7 @@
  *
  * @return a string representation of the event
  */
-public override char[] toString() {
+public override String toString() {
     return Format( "{} x={} y={} doit={}}", super.toString[ 0 .. $-2 ], x, y, doit );
 }
 }