Changeset 85595 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 3, 2020 11:04:44 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/monitor/resource/UIResourceMonitor.cpp
r85594 r85595 824 824 if (!m_comSession.isNull()) 825 825 m_comSession.UnlockMachine(); 826 }827 828 UIResourceMonitorItem::UIResourceMonitorItem(const UIResourceMonitorItem &other)829 : m_VMuid(other.m_VMuid)830 , m_strVMName(other.m_strVMName)831 , m_uCPUGuestLoad(other.m_uCPUGuestLoad)832 , m_uCPUVMMLoad(other.m_uCPUVMMLoad)833 , m_uTotalRAM(other.m_uTotalRAM)834 , m_uFreeRAM(other.m_uFreeRAM)835 , m_uUsedRAM(other.m_uUsedRAM)836 , m_fRAMUsagePercentage(other.m_fRAMUsagePercentage)837 , m_uNetworkDownRate(other.m_uNetworkDownRate)838 , m_uNetworkUpRate(other.m_uNetworkUpRate)839 , m_uNetworkDownTotal(other.m_uNetworkDownTotal)840 , m_uNetworkUpTotal(other.m_uNetworkUpTotal)841 , m_uDiskWriteRate(other.m_uDiskWriteRate)842 , m_uDiskReadRate(other.m_uDiskReadRate)843 , m_uDiskWriteTotal(other.m_uDiskWriteTotal)844 , m_uDiskReadTotal(other.m_uDiskReadTotal)845 , m_uVMExitRate(other.m_uVMExitRate)846 , m_uVMExitTotal(other.m_uVMExitTotal)847 , m_comSession(other.m_comSession)848 , m_comDebugger(other.m_comDebugger)849 , m_comGuest(other.m_comGuest)850 , m_columnData(other.m_columnData)851 {852 826 } 853 827
Note:
See TracChangeset
for help on using the changeset viewer.