comparison dwt/widgets/ExpandItem.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 0f25be5cbe6f
children fd9c62a2998e
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
495 } else { 495 } else {
496 redraw (true); 496 redraw (true);
497 } 497 }
498 } 498 }
499 499
500 override public void setText (char[] string) { 500 override public void setText (String string) {
501 super.setText (string); 501 super.setText (string);
502 redraw (true); 502 redraw (true);
503 } 503 }
504 } 504 }
505 505