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

    r150 r238  
    1212 *******************************************************************************/ 
    1313module dwt.widgets.TreeColumn; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    5254    int modelIndex, lastButton, lastTime, lastX, lastWidth; 
    5355    bool customDraw, useFixedWidth; 
    54     char[] toolTipText; 
     56    String toolTipText; 
    5557 
    5658/** 
     
    308310 * @since 3.2 
    309311 */ 
    310 public char[] getToolTipText () { 
     312public String getToolTipText () { 
    311313    checkWidget(); 
    312314    return toolTipText; 
     
    592594} 
    593595 
    594 public override void setText (char[] string) { 
     596public override void setText (String string) { 
    595597    checkWidget(); 
    596598    if (string is null) error (DWT.ERROR_NULL_ARGUMENT); 
     
    619621 * @since 3.2 
    620622 */ 
    621 public void setToolTipText (char[] string) { 
     623public void setToolTipText (String string) { 
    622624    checkWidget(); 
    623625    Shell shell = parent._getShell (); 
     
    626628} 
    627629 
    628 void setToolTipText (Shell shell, char[] newString) { 
     630void setToolTipText (Shell shell, String newString) { 
    629631    shell.setToolTipText (buttonHandle, newString); 
    630632}