Changeset 104498 in vbox
- Timestamp:
- May 3, 2024 9:28:24 AM (7 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/activity/vmactivity/UIVMActivityMonitor.cpp
r104481 r104498 1491 1491 QVector<Metric_Type> chartOrder; 1492 1492 chartOrder << Metric_Type_CPU << Metric_Type_RAM << 1493 Metric_Type_Network_InOut << Metric_Type_Disk_InOut << Metric_Type_VM_Exits; 1493 Metric_Type_Network_InOut << Metric_Type_Disk_InOut; 1494 #ifdef DEBUG 1495 chartOrder << Metric_Type_VM_Exits; 1496 #endif 1494 1497 int iRow = 0; 1495 1498 foreach (Metric_Type enmType, chartOrder) … … 1544 1547 { 1545 1548 QVector<CPerformanceMetric> metrics = m_performanceCollector.GetMetrics(m_nameList, m_objectList); 1546 printf("object list size %lld\n", metrics.size());1547 1549 for (int i = 0; i < metrics.size(); ++i) 1548 1550 { -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIVMInformationDialog.cpp
r104463 r104498 247 247 m_pTabWidget->addTab(m_tabs.value(Tabs_ActivityMonitor), QString()); 248 248 } 249 249 #ifdef DEBUG 250 250 /* Create Guest Process Control tab: */ 251 251 UIGuestProcessControlWidget *pGuestProcessControlWidget = … … 257 257 m_pTabWidget->addTab(m_tabs.value(3), QString()); 258 258 } 259 259 #endif 260 260 m_pTabWidget->setCurrentIndex(Tabs_ActivityMonitor); 261 261
Note:
See TracChangeset
for help on using the changeset viewer.