comparison dwt/graphics/ImageLoaderEvent.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents f906dbcacee5
children fd9c62a2998e
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
14 14
15 15
16 public import dwt.internal.DWTEventObject; 16 public import dwt.internal.DWTEventObject;
17 public import dwt.graphics.ImageLoader; 17 public import dwt.graphics.ImageLoader;
18 public import dwt.graphics.ImageData; 18 public import dwt.graphics.ImageData;
19 import dwt.dwthelper.utils;
19 20
20 import tango.text.convert.Format; 21 import tango.text.convert.Format;
21 22
22 /** 23 /**
23 * Instances of this class are sent as a result of the incremental 24 * Instances of this class are sent as a result of the incremental
83 * Returns a string containing a concise, human-readable 84 * Returns a string containing a concise, human-readable
84 * description of the receiver. 85 * description of the receiver.
85 * 86 *
86 * @return a string representation of the event 87 * @return a string representation of the event
87 */ 88 */
88 public override char[] toString () { 89 public override String toString () {
89 return Format( "ImageLoaderEvent {source={} imageData={} incrementCount={} endOfImage={}}", source, imageData, incrementCount, endOfImage); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ 90 return Format( "ImageLoaderEvent {source={} imageData={} incrementCount={} endOfImage={}}", source, imageData, incrementCount, endOfImage); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
90 } 91 }
91 92
92 } 93 }