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/dnd/Transfer.d

    r108 r238  
    1212 *******************************************************************************/ 
    1313module dwt.dnd.Transfer; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517 
     
    6567 * using this transfer agent. 
    6668 */ 
    67 abstract public char[][] getTypeNames(); 
     69abstract public String[] getTypeNames(); 
    6870 
    6971/** 
     
    136138 * @return the unique identifier associated with this data type 
    137139 */ 
    138 public static int registerType(char[] formatName){ 
     140public static int registerType(String formatName){ 
    139141    if (formatName is null) return OS.GDK_NONE; 
    140142    char* buffer = tango.stdc.stringz.toStringz( formatName );