Show
Ignore:
Timestamp:
05/04/08 18:42:55 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted char[] to String

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/internal/image/PngChunk.d

    r200 r238  
    365365 * data to the toString() call. 
    366366 */ 
    367 char[] contributeToString() { 
     367String contributeToString() { 
    368368    return ""; 
    369369} 
     
    375375 * @return a string representation of the event 
    376376 */ 
    377 public override char[] toString() { 
    378     char[] buffer = Format( "{\n\tLength: {}\n\tType: {}{}\n\tCRC: {:X}\n}", 
     377public override String toString() { 
     378    String buffer = Format( "{\n\tLength: {}\n\tType: {}{}\n\tCRC: {:X}\n}", 
    379379        getLength(), 
    380         cast(char[]) getTypeBytes(), 
     380        cast(String) getTypeBytes(), 
    381381        contributeToString(), 
    382382        getCRC());