Changeset 50316 in vbox
- Timestamp:
- Feb 4, 2014 8:03:23 AM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
-
GuestHost/OpenGL/include/cr_vreg.h (modified) (1 diff)
-
HostServices/DragAndDrop/dndmanager.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_vreg.h
r50313 r50316 189 189 VBOXVREGDECL(int) VBoxVrListIntersect(PVBOXVR_LIST pList, const VBOXVR_LIST *pList2, bool *pfChanged); 190 190 191 VBOXVREGDECL(int) VBoxVrInit( );192 VBOXVREGDECL(void) VBoxVrTerm( );191 VBOXVREGDECL(int) VBoxVrInit(void); 192 VBOXVREGDECL(void) VBoxVrTerm(void); 193 193 194 194 typedef struct VBOXVR_LIST_ITERATOR -
trunk/src/VBox/HostServices/DragAndDrop/dndmanager.cpp
r50308 r50316 351 351 * file scheme NULL is returned. */ 352 352 char *pszFilePath; 353 if ( pszFilePath = RTUriFilePath(strURI.c_str(), URI_FILE_FORMAT_AUTO))353 if ((pszFilePath = RTUriFilePath(strURI.c_str(), URI_FILE_FORMAT_AUTO))) 354 354 { 355 355 /* Add the path to our internal file list (recursive in 356 356 * the case of a directory). */ 357 357 char *pszFilename; 358 if ( pszFilename = RTPathFilename(pszFilePath))358 if ((pszFilename = RTPathFilename(pszFilePath))) 359 359 { 360 360 char *pszNewURI = RTUriFileCreate(pszFilename); … … 559 559 { 560 560 char *pszNewFile; 561 if ( pszNewFile = RTStrAPrintf2("%s%c%s", pcszPath, RTPATH_DELIMITER, DirEntry.szName))561 if ((pszNewFile = RTStrAPrintf2("%s%c%s", pcszPath, RTPATH_DELIMITER, DirEntry.szName))) 562 562 { 563 563 /* We need the size and the mode of the file. */
Note:
See TracChangeset
for help on using the changeset viewer.

