Show
Ignore:
Timestamp:
05/04/08 18:12:38 (7 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/custom/StyleRange.d

    r173 r212  
    2121import dwt.custom.TextChangedEvent; 
    2222import dwt.custom.TextChangingEvent; 
     23import dwt.dwthelper.utils; 
    2324 
    2425static import tango.text.Text; 
     
    176177 * @return a string representation of the StyleRange 
    177178 */ 
    178 public override char[] toString() { 
     179public override String toString() { 
    179180    StringBuffer buffer = new StringBuffer(); 
    180181    buffer.append("StyleRange {"); 
     
    196197            buffer.append("normal"); 
    197198    } 
    198     char[] str = super.toString(); 
     199    String str = super.toString(); 
    199200    int index = tango.text.Util.locate( str, '{'); 
    200201    if( index is str.length ) index = -1;