Changeset 105010 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 24, 2024 6:47:56 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 163628
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/MouseImpl.cpp
r105006 r105010 241 241 { 242 242 RT_ZERO(mpDrv); 243 RT_ZERO(mPointerData);244 243 mcLastX = 0x8000; 245 244 mcLastY = 0x8000; -
trunk/src/VBox/Main/src-client/Recording.cpp
r105006 r105010 387 387 switch (enmType) 388 388 { 389 #ifdef VBOX_WITH_AUDIO_RECORDING 389 390 case RECORDINGFRAME_TYPE_AUDIO: 390 391 { … … 400 401 break; 401 402 } 402 403 #endif 403 404 default: 404 405 AssertFailed(); 405 406 break; 406 407 } 408 409 if (!pFrame) 410 return VINF_SUCCESS; 407 411 408 412 lock(); -
trunk/src/VBox/Main/src-client/RecordingInternals.cpp
r105009 r105010 231 231 * 232 232 * @returns VBox status code. 233 * @param pFrame Destination frame. 233 * @param pu8Dst Destination buffer. 234 * @param cbDst Size (in bytes) of \a pu8Dst. 234 235 * @param uDstX X destination (in pixel) within destination frame. 235 236 * @param uDstY Y destination (in pixel) within destination frame. -
trunk/src/VBox/Main/src-client/RecordingUtils.cpp
r105009 r105010 415 415 if (!pszPath) 416 416 { 417 int rc2 = RTPathTemp(szPath, sizeof(szPath));418 if (RT_FAILURE( rc2))419 return rc2;417 int vrc2 = RTPathTemp(szPath, sizeof(szPath)); 418 if (RT_FAILURE(vrc2)) 419 return vrc2; 420 420 } 421 421
Note:
See TracChangeset
for help on using the changeset viewer.