# HG changeset patch # User Frank Benoit # Date 1208643498 -7200 # Node ID f2b62ad9777bf6349650df699f7b7a8c7ce3c945 # Parent db56f777e9146c7d7171fef12916470a734ac236 fix format string diff -r db56f777e914 -r f2b62ad9777b dwt/widgets/Event.d --- 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$ } }