changeset 209:f2b62ad9777b

fix format string
author Frank Benoit <benoit@tionex.de>
date Sun, 20 Apr 2008 00:18:18 +0200
parents db56f777e914
children 2b361bf0dfe1
files dwt/widgets/Event.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dwt/widgets/Event.d	Thu Apr 17 21:42:13 2008 +0200
+++ b/dwt/widgets/Event.d	Sun Apr 20 00:18:18 2008 +0200
@@ -222,7 +222,7 @@
  * @return a string representation of the event
  */
 override public char[] toString () {
-    return Format( "Event {type={} {} time={} data={} x={} y={} width={} height={} detail={}}",
+    return Format( "Event {{type={} {} time={} data={} x={} y={} width={} height={} detail={}}",
         type, widget, time, data, x, y, width, height, detail );  //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$
 }
 }