Changeset 48714 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Sep 26, 2013 2:32:14 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89343
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/darwin-pasteboard.cpp
r43123 r48714 174 174 { 175 175 Log(("Clipboard content is utf-16\n")); 176 rc = RTUtf16DupEx(&pwszTmp, (PRTUTF16)CFDataGetBytePtr(outData), 0); 176 177 PRTUTF16 pBytePtr = (PRTUTF16)CFDataGetBytePtr(outData); 178 if (pBytePtr) 179 rc = RTUtf16DupEx(&pwszTmp, pBytePtr, 0); 180 else 181 rc = VERR_INVALID_PARAMETER; 177 182 } 178 183 /* Second try is utf-8 */
Note:
See TracChangeset
for help on using the changeset viewer.