Changeset 238:380bad9f6852 for dwt/widgets/ToolItem.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/widgets/ToolItem.d (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/widgets/ToolItem.d
r152 r238 12 12 *******************************************************************************/ 13 13 module dwt.widgets.ToolItem; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 56 58 Control control; 57 59 Image hotImage, disabledImage; 58 char[]toolTipText;60 String toolTipText; 59 61 bool drawHotImage; 60 62 … … 465 467 * </ul> 466 468 */ 467 public char[]getToolTipText () {469 public String getToolTipText () { 468 470 checkWidget(); 469 471 return toolTipText; … … 979 981 * </ul> 980 982 */ 981 public override void setText ( char[]string) {983 public override void setText (String string) { 982 984 checkWidget(); 983 985 if (string is null) error (DWT.ERROR_NULL_ARGUMENT); … … 1006 1008 * </ul> 1007 1009 */ 1008 public void setToolTipText ( char[]string) {1010 public void setToolTipText (String string) { 1009 1011 checkWidget(); 1010 1012 if (parent.toolTipText is null) { … … 1015 1017 } 1016 1018 1017 void setToolTipText (Shell shell, char[]newString) {1019 void setToolTipText (Shell shell, String newString) { 1018 1020 shell.setToolTipText (handle, newString); 1019 1021 }
