Show
Ignore:
Timestamp:
05/04/08 18:12:38 (8 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/graphics/GlyphMetrics.d

    r12 r212  
    1515import dwt.DWT; 
    1616import tango.text.convert.Format; 
     17import dwt.dwthelper.utils; 
     18 
    1719/** 
    1820 * Instances of this class represent glyph metrics. 
     
    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}