changeset 236:329f277b58a0

fix format string
author Frank Benoit <benoit@tionex.de>
date Sun, 20 Apr 2008 00:19:27 +0200
parents b16e1f78a213
children 98b80b00af79
files dwt/widgets/Event.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dwt/widgets/Event.d	Wed Apr 16 20:31:38 2008 +0200
+++ b/dwt/widgets/Event.d	Sun Apr 20 00:19:27 2008 +0200
@@ -222,7 +222,7 @@
  * @return a string representation of the event
  */
 public override 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$
 }
 }