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/widgets/Decorations.d

    r200 r238  
    110110    alias Canvas.sort sort; 
    111111 
    112     char[] text; 
     112    String text; 
    113113    Image image; 
    114114    Image [] images; 
     
    427427} 
    428428 
    429 override char[] getNameText () { 
     429override String getNameText () { 
    430430    return getText (); 
    431431} 
     
    444444 * </ul> 
    445445 */ 
    446 public char[] getText () { 
     446public String getText () { 
    447447    checkWidget(); 
    448448    return text; 
     
    718718 * </ul> 
    719719 */ 
    720 public void setText (char[] string) { 
     720public void setText (String string) { 
    721721    checkWidget(); 
    722722    if (string is null) error (DWT.ERROR_NULL_ARGUMENT);