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/layout/FormAttachment.d

    r195 r238  
    1919 
    2020import tango.text.convert.Format; 
     21import dwt.dwthelper.utils; 
    2122 
    2223/** 
     
    299300 * @return a string representation of the FormAttachment 
    300301 */ 
    301 public override char[] toString () { 
    302     char[] string = control !is null ? control.toString () : Format( "{}/{}", numerator, denominator ); 
     302public override String toString () { 
     303    String string = control !is null ? control.toString () : Format( "{}/{}", numerator, denominator ); 
    303304    return Format("{{y = ({})x + {}}", string, ( offset >= 0 ? Format(")x + {}", offset ) : Format( ")x - {}", -offset))); 
    304305}