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/Dialog.d

    r122 r238  
    1212 *******************************************************************************/ 
    1313module dwt.widgets.Dialog; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    8284    int style; 
    8385    Shell parent; 
    84     char[] title; 
     86    String title; 
    8587 
    8688/** 
     
    229231 * </ul> 
    230232 */ 
    231 public char[] getText () { 
     233public String getText () { 
    232234    return title; 
    233235} 
     
    248250 * </ul> 
    249251 */ 
    250 public void setText (char[] string) { 
     252public void setText (String string) { 
    251253    if (string is null) error (DWT.ERROR_NULL_ARGUMENT); 
    252254    title = string;