Changeset 212:ab60f3309436 for dwt/dnd/RTFTransfer.d
- Timestamp:
- 05/04/08 18:12:38 (8 months ago)
- Files:
-
- dwt/dnd/RTFTransfer.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/dnd/RTFTransfer.d
r197 r212 42 42 43 43 private static RTFTransfer _instance; 44 private static const char[]CF_RTF = "Rich Text Format"; //$NON-NLS-1$44 private static const String CF_RTF = "Rich Text Format"; //$NON-NLS-1$ 45 45 private static const int CF_RTFID; 46 46 … … 81 81 } 82 82 // CF_RTF is stored as a null terminated byte array 83 char[]string = (cast(ArrayWrapperString)object).array;83 String string = (cast(ArrayWrapperString)object).array; 84 84 wchar* chars = StrToWCHARz(string); 85 85 int codePage = OS.GetACP(); … … 143 143 } 144 144 145 protected char[][] getTypeNames(){145 protected String[] getTypeNames(){ 146 146 return [CF_RTF]; 147 147 }
