Changeset 58069 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Oct 7, 2015 12:05:47 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 103125
- Location:
- trunk/src/VBox/GuestHost/DragAndDrop
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIList.cpp
r57465 r58069 342 342 /* Query the path component of a file URI. If this hasn't a 343 343 * file scheme NULL is returned. */ 344 char *pszSrcPath = RTUriFilePath(pszURI , URI_FILE_FORMAT_AUTO);344 char *pszSrcPath = RTUriFilePath(pszURI); 345 345 if (pszSrcPath) 346 346 { … … 460 460 * file scheme, NULL is returned. */ 461 461 const char *pszURI = lstURI.at(i).c_str(); 462 char *pszFilePath = RTUriFilePath(pszURI, 463 URI_FILE_FORMAT_AUTO); 462 char *pszFilePath = RTUriFilePath(pszURI); 464 463 #ifdef DEBUG_andy 465 464 LogFlowFunc(("pszURI=%s, pszFilePath=%s\n", pszURI, pszFilePath)); -
trunk/src/VBox/GuestHost/DragAndDrop/DnDURIObject.cpp
r57826 r58069 255 255 const RTCString &strBaseNew /* = "" */) 256 256 { 257 char *pszPath = RTUriFilePath(strPath.c_str() , URI_FILE_FORMAT_AUTO);257 char *pszPath = RTUriFilePath(strPath.c_str()); 258 258 if (!pszPath) /* No URI? */ 259 259 pszPath = RTStrDup(strPath.c_str());
Note:
See TracChangeset
for help on using the changeset viewer.