Show
Ignore:
Timestamp:
05/04/08 18:42:55 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted char[] to String

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/widgets/MenuItem.d

    r158 r238  
    834834 * @see #setAccelerator 
    835835 */ 
    836 public override void setText (char[] string) { 
     836public override void setText (String string) { 
    837837    checkWidget(); 
    838838    if (string is null) error (DWT.ERROR_NULL_ARGUMENT); 
     
    840840    if (text.equals(string)) return; 
    841841    super.setText (string); 
    842     char[] accelString = ""; 
     842    String accelString = ""; 
    843843    int index = string.indexOf ('\t'); 
    844844    if (index !is -1) {