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/graphics/GlyphMetrics.d

    r194 r238  
    1212 *******************************************************************************/ 
    1313module dwt.graphics.GlyphMetrics; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517import dwt.DWT; 
     
    107109 * @return a string representation of the <code>GlyphMetrics</code> 
    108110 */ 
    109 public override char[] toString () { 
     111public override String toString () { 
    110112    return Format( "GlyphMetrics {{{}, {}, {}}", ascent, descent, width ); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ 
    111113}