Changeset 238:380bad9f6852 for dwt/dnd/Transfer.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/dnd/Transfer.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/dnd/Transfer.d
r108 r238 12 12 *******************************************************************************/ 13 13 module dwt.dnd.Transfer; 14 15 import dwt.dwthelper.utils; 14 16 15 17 … … 65 67 * using this transfer agent. 66 68 */ 67 abstract public char[][] getTypeNames();69 abstract public String[] getTypeNames(); 68 70 69 71 /** … … 136 138 * @return the unique identifier associated with this data type 137 139 */ 138 public static int registerType( char[]formatName){140 public static int registerType(String formatName){ 139 141 if (formatName is null) return OS.GDK_NONE; 140 142 char* buffer = tango.stdc.stringz.toStringz( formatName );
