Changeset 85261 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jul 12, 2020 12:01:51 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139238
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/SnapshotImpl.cpp
r82968 r85261 1447 1447 uint32_t uMemSize, 1448 1448 bool fTakingSnapshotOnline) 1449 : SnapshotTask(m, p, t, s), 1450 m_strName(strName), 1451 m_strDescription(strDescription), 1452 m_uuidSnapshot(uuidSnapshot), 1453 m_fPause(fPause), 1454 m_uMemSize(uMemSize), 1455 m_fTakingSnapshotOnline(fTakingSnapshotOnline) 1456 { 1449 : SnapshotTask(m, p, t, s) 1450 , m_strName(strName) 1451 , m_strDescription(strDescription) 1452 , m_uuidSnapshot(uuidSnapshot) 1453 , m_fPause(fPause) 1454 #if 0 /*unused*/ 1455 , m_uMemSize(uMemSize) 1456 #endif 1457 , m_fTakingSnapshotOnline(fTakingSnapshotOnline) 1458 { 1459 RT_NOREF(uMemSize); 1457 1460 if (fTakingSnapshotOnline) 1458 1461 m_pDirectControl = m->mData->mSession.mDirectControl; … … 1482 1485 ComPtr<IInternalSessionControl> m_pDirectControl; 1483 1486 bool m_fPause; 1487 #if 0 /*unused*/ 1484 1488 uint32_t m_uMemSize; 1489 #endif 1485 1490 bool m_fTakingSnapshotOnline; 1486 1491
Note:
See TracChangeset
for help on using the changeset viewer.