Changeset 238:380bad9f6852 for dwt/internal/image/PngChunk.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/internal/image/PngChunk.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/internal/image/PngChunk.d
r200 r238 365 365 * data to the toString() call. 366 366 */ 367 char[]contributeToString() {367 String contributeToString() { 368 368 return ""; 369 369 } … … 375 375 * @return a string representation of the event 376 376 */ 377 public override char[]toString() {378 char[]buffer = Format( "{\n\tLength: {}\n\tType: {}{}\n\tCRC: {:X}\n}",377 public override String toString() { 378 String buffer = Format( "{\n\tLength: {}\n\tType: {}{}\n\tCRC: {:X}\n}", 379 379 getLength(), 380 cast( char[]) getTypeBytes(),380 cast(String) getTypeBytes(), 381 381 contributeToString(), 382 382 getCRC());
