Changeset 238:380bad9f6852 for dwt/widgets/TreeColumn.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/widgets/TreeColumn.d (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/widgets/TreeColumn.d
r150 r238 12 12 *******************************************************************************/ 13 13 module dwt.widgets.TreeColumn; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 52 54 int modelIndex, lastButton, lastTime, lastX, lastWidth; 53 55 bool customDraw, useFixedWidth; 54 char[]toolTipText;56 String toolTipText; 55 57 56 58 /** … … 308 310 * @since 3.2 309 311 */ 310 public char[]getToolTipText () {312 public String getToolTipText () { 311 313 checkWidget(); 312 314 return toolTipText; … … 592 594 } 593 595 594 public override void setText ( char[]string) {596 public override void setText (String string) { 595 597 checkWidget(); 596 598 if (string is null) error (DWT.ERROR_NULL_ARGUMENT); … … 619 621 * @since 3.2 620 622 */ 621 public void setToolTipText ( char[]string) {623 public void setToolTipText (String string) { 622 624 checkWidget(); 623 625 Shell shell = parent._getShell (); … … 626 628 } 627 629 628 void setToolTipText (Shell shell, char[]newString) {630 void setToolTipText (Shell shell, String newString) { 629 631 shell.setToolTipText (buttonHandle, newString); 630 632 }
