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

    r152 r238  
    1212 *******************************************************************************/ 
    1313module dwt.widgets.TableColumn; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    5052    int modelIndex, lastButton, lastTime, lastX, lastWidth; 
    5153    bool customDraw, useFixedWidth; 
    52     char[] toolTipText; 
     54    String toolTipText; 
    5355 
    5456/** 
     
    307309 * @since 3.2 
    308310 */ 
    309 public char[] getToolTipText () { 
     311public String getToolTipText () { 
    310312    checkWidget(); 
    311313    return toolTipText; 
     
    607609} 
    608610 
    609 public override void setText (char[] string) { 
     611public override void setText (String string) { 
    610612    checkWidget(); 
    611613    if (string is null) error (DWT.ERROR_NULL_ARGUMENT); 
     
    634636 * @since 3.2 
    635637 */ 
    636 public void setToolTipText (char[] string) { 
     638public void setToolTipText (String string) { 
    637639    checkWidget(); 
    638640    Shell shell = parent._getShell (); 
     
    641643} 
    642644 
    643 void setToolTipText (Shell shell, char[] newString) { 
     645void setToolTipText (Shell shell, String newString) { 
    644646    shell.setToolTipText (buttonHandle, newString); 
    645647}