comparison dwt/widgets/Event.d @ 236:329f277b58a0

fix format string
author Frank Benoit <benoit@tionex.de>
date Sun, 20 Apr 2008 00:19:27 +0200
parents f2e04420fd6c
children 380bad9f6852
comparison
equal deleted inserted replaced
235:b16e1f78a213 236:329f277b58a0
220 * description of the receiver. 220 * description of the receiver.
221 * 221 *
222 * @return a string representation of the event 222 * @return a string representation of the event
223 */ 223 */
224 public override char[] toString () { 224 public override char[] toString () {
225 return Format( "Event {type={} {} time={} data={} x={} y={} width={} height={} detail={}}", 225 return Format( "Event {{type={} {} time={} data={} x={} y={} width={} height={} detail={}}",
226 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$ 226 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$
227 } 227 }
228 } 228 }