Changeset 238:380bad9f6852 for dwt/widgets/Label.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/widgets/Label.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/widgets/Label.d
r207 r238 58 58 ImageList imageList; 59 59 Image image; 60 char[]text;60 String text; 61 61 62 62 /** … … 299 299 } 300 300 301 override char[]getNameText () {301 override String getNameText () { 302 302 return getText (); 303 303 } … … 315 315 * </ul> 316 316 */ 317 public char[]getText () {317 public String getText () { 318 318 checkWidget (); 319 319 if ((style & DWT.SEPARATOR) !is 0) return ""; … … 566 566 * </ul> 567 567 */ 568 public void setText ( char[]string) {568 public void setText (String string) { 569 569 checkWidget (); 570 570 // DWT extension: allow null for zero length string
