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

    r152 r238  
    1212 *******************************************************************************/ 
    1313module dwt.widgets.ToolItem; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    5658    Control control; 
    5759    Image hotImage, disabledImage; 
    58     char[] toolTipText; 
     60    String toolTipText; 
    5961    bool drawHotImage; 
    6062 
     
    465467 * </ul> 
    466468 */ 
    467 public char[] getToolTipText () { 
     469public String getToolTipText () { 
    468470    checkWidget(); 
    469471    return toolTipText; 
     
    979981 * </ul> 
    980982 */ 
    981 public override void setText (char[] string) { 
     983public override void setText (String string) { 
    982984    checkWidget(); 
    983985    if (string is null) error (DWT.ERROR_NULL_ARGUMENT); 
     
    10061008 * </ul> 
    10071009 */ 
    1008 public void setToolTipText (char[] string) { 
     1010public void setToolTipText (String string) { 
    10091011    checkWidget(); 
    10101012    if (parent.toolTipText is null) { 
     
    10151017} 
    10161018 
    1017 void setToolTipText (Shell shell, char[] newString) { 
     1019void setToolTipText (Shell shell, String newString) { 
    10181020    shell.setToolTipText (handle, newString); 
    10191021}