Show
Ignore:
Timestamp:
05/04/08 18:12:38 (8 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dnd/DropTarget.d

    r137 r212  
    115115    int refCount; 
    116116 
    117     static final char[] DEFAULT_DROP_TARGET_EFFECT = "DEFAULT_DROP_TARGET_EFFECT"; //$NON-NLS-1$ 
    118     static final char[] DROPTARGETID = "DropTarget"; //$NON-NLS-1$ 
     117    static final String DEFAULT_DROP_TARGET_EFFECT = "DEFAULT_DROP_TARGET_EFFECT"; //$NON-NLS-1$ 
     118    static final String DROPTARGETID = "DropTarget"; //$NON-NLS-1$ 
    119119 
    120120/** 
     
    244244 
    245245protected void checkSubclass () { 
    246     char[] name = this.classinfo.name; 
    247     char[] validName = DropTarget.classinfo.name; 
     246    String name = this.classinfo.name; 
     247    String validName = DropTarget.classinfo.name; 
    248248    if (validName!=/*eq*/name) { 
    249249        DND.error (DWT.ERROR_INVALID_SUBCLASS);