Changeset 107477 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 8, 2025 5:03:18 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 166535
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsDisplay.cpp
r106811 r107477 1146 1146 { 1147 1147 /* Save video RAM size: */ 1148 if ( fSuccess &&isMachineOffline() && newDisplayData.m_iCurrentVRAM != oldDisplayData.m_iCurrentVRAM)1148 if (/*fSuccess &&*/ isMachineOffline() && newDisplayData.m_iCurrentVRAM != oldDisplayData.m_iCurrentVRAM) 1149 1149 { 1150 1150 comGraphics.SetVRAMSize(newDisplayData.m_iCurrentVRAM); … … 1216 1216 { 1217 1217 /* Save whether remote display server is enabled: */ 1218 if ( fSuccess &&newDisplayData.m_fRemoteDisplayServerEnabled != oldDisplayData.m_fRemoteDisplayServerEnabled)1218 if (/*fSuccess &&*/ newDisplayData.m_fRemoteDisplayServerEnabled != oldDisplayData.m_fRemoteDisplayServerEnabled) 1219 1219 { 1220 1220 comServer.SetEnabled(newDisplayData.m_fRemoteDisplayServerEnabled); … … 1322 1322 // And finally we should *enable* Recording if necessary. 1323 1323 /* Save recording file path: */ 1324 if ( fSuccess &&newDisplayData.m_strRecordingFilePath != oldDisplayData.m_strRecordingFilePath)1324 if (/*fSuccess &&*/ newDisplayData.m_strRecordingFilePath != oldDisplayData.m_strRecordingFilePath) 1325 1325 { 1326 1326 comRecordingScreenSettings.SetFilename(newDisplayData.m_strRecordingFilePath); … … 1397 1397 1398 1398 /* Save recording file path: */ 1399 if ( fSuccess &&newDisplayData.m_strRecordingFilePath != oldDisplayData.m_strRecordingFilePath)1399 if (/*fSuccess &&*/ newDisplayData.m_strRecordingFilePath != oldDisplayData.m_strRecordingFilePath) 1400 1400 { 1401 1401 comRecordingScreenSettings.SetFilename(newDisplayData.m_strRecordingFilePath);
Note:
See TracChangeset
for help on using the changeset viewer.