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/custom/SashFormData.d

    r150 r238  
    1313module dwt.custom.SashFormData; 
    1414 
     15import dwt.dwthelper.utils; 
     16 
    1517static import tango.text.Util; 
    1618import tango.util.Convert; 
     
    2022    long weight; 
    2123 
    22 char[] getName () { 
    23     char[] string = this.classinfo.name; 
     24String getName () { 
     25    String string = this.classinfo.name; 
    2426    int index = tango.text.Util.locatePrior( string ,'.' ); 
    2527    if (index is string.length ) return string; 
     
    3335 * @return a string representation of the event 
    3436 */ 
    35 public override char[] toString () { 
    36     return getName()~" {weight="~to!(char[])(weight)~"}"; //$NON-NLS-2$ 
     37public override String toString () { 
     38    return getName()~" {weight="~to!(String)(weight)~"}"; //$NON-NLS-2$ 
    3739} 
    3840}