Changeset 105267 in vbox
- Timestamp:
- Jul 11, 2024 7:58:35 AM (5 months ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/Recording.cpp
r105266 r105267 244 244 * If one screen is configured to be recorded indefinitely (until manually stopped), 245 245 * the operation count gets reset to 1. */ 246 ULONG cOperations ;246 ULONG cOperations = 1; /* Always start at 1. */ 247 247 settings::RecordingScreenSettingsMap::const_iterator itScreen = Settings.mapScreens.begin(); 248 248 while (itScreen != Settings.mapScreens.end()) … … 756 756 ComPtr<IProgress> &pProgress) 757 757 { 758 int vrc = VINF_SUCCESS; 759 758 760 /* Copy the settings to our context. */ 759 761 m_Settings = Settings; … … 766 768 settings::RecordingScreenSettings const &screen0Settings = itScreen0->second; 767 769 768 intvrc = this->audioInit(screen0Settings);770 vrc = this->audioInit(screen0Settings); 769 771 if (RT_FAILURE(vrc)) 770 772 return vrc; -
trunk/src/VBox/Main/src-client/SessionImpl.cpp
r105266 r105267 785 785 return mConsole->i_onRecordingStateChange(aEnable, aProgress); 786 786 #else 787 RT_NOREF(aEnable );787 RT_NOREF(aEnable, aProgress); 788 788 return S_OK; 789 789 #endif … … 802 802 return mConsole->i_onRecordingScreenStateChange(aEnable, aScreen); 803 803 #else 804 RT_NOREF(aEnable );804 RT_NOREF(aEnable, aScreen); 805 805 return S_OK; 806 806 #endif
Note:
See TracChangeset
for help on using the changeset viewer.