Changeset 212:ab60f3309436 for dwt/internal/image/PngChunk.d
- Timestamp:
- 05/04/08 18:12:38 (8 months ago)
- Files:
-
- dwt/internal/image/PngChunk.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/internal/image/PngChunk.d
r80 r212 26 26 import tango.text.convert.Format; 27 27 import dwt.dwthelper.System; 28 import dwt.dwthelper.utils; 28 29 29 30 class PngChunk { … … 375 376 * data to the toString() call. 376 377 */ 377 char[]contributeToString() {378 String contributeToString() { 378 379 return ""; 379 380 } … … 385 386 * @return a string representation of the event 386 387 */ 387 override public char[]toString() {388 char[]buffer = Format( "{\n\tLength: {}\n\tType: {}{}\n\tCRC: {:X}\n}",388 override public String toString() { 389 String buffer = Format( "{\n\tLength: {}\n\tType: {}{}\n\tCRC: {:X}\n}", 389 390 getLength(), 390 cast( char[]) getTypeBytes(),391 cast(String) getTypeBytes(), 391 392 contributeToString(), 392 393 getCRC());
