Changeset 236:329f277b58a0

Show
Ignore:
Timestamp:
04/19/08 18:19:27 (4 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

fix format string

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/widgets/Event.d

    r150 r236  
    223223 */ 
    224224public 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={}}", 
    226226        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$ 
    227227}