Changeset 238:380bad9f6852 for dwt/widgets/TableColumn.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/widgets/TableColumn.d (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/widgets/TableColumn.d
r152 r238 12 12 *******************************************************************************/ 13 13 module dwt.widgets.TableColumn; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 50 52 int modelIndex, lastButton, lastTime, lastX, lastWidth; 51 53 bool customDraw, useFixedWidth; 52 char[]toolTipText;54 String toolTipText; 53 55 54 56 /** … … 307 309 * @since 3.2 308 310 */ 309 public char[]getToolTipText () {311 public String getToolTipText () { 310 312 checkWidget(); 311 313 return toolTipText; … … 607 609 } 608 610 609 public override void setText ( char[]string) {611 public override void setText (String string) { 610 612 checkWidget(); 611 613 if (string is null) error (DWT.ERROR_NULL_ARGUMENT); … … 634 636 * @since 3.2 635 637 */ 636 public void setToolTipText ( char[]string) {638 public void setToolTipText (String string) { 637 639 checkWidget(); 638 640 Shell shell = parent._getShell (); … … 641 643 } 642 644 643 void setToolTipText (Shell shell, char[]newString) {645 void setToolTipText (Shell shell, String newString) { 644 646 shell.setToolTipText (buttonHandle, newString); 645 647 }
