# HG changeset patch # User Frank Benoit # Date 1208643567 -7200 # Node ID 329f277b58a0f5ed3c8a3e5c402cb0235a8f7571 # Parent b16e1f78a21396bd894d42a7533515d1474fe862 fix format string diff -r b16e1f78a213 -r 329f277b58a0 dwt/widgets/Event.d --- 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$ } }