Changeset 85410 in vbox for trunk/src/VBox
- Timestamp:
- Jul 22, 2020 10:02:46 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139449
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/monitor/performance/UIPerformanceMonitor.cpp
r85406 r85410 1247 1247 if (m_pTimer) 1248 1248 m_pTimer->stop(); 1249 /* reset the metrics. this will delete their data cache: */ 1249 1250 for (QMap<QString, UIMetric>::iterator iterator = m_metrics.begin(); 1250 1251 iterator != m_metrics.end(); ++iterator) 1251 1252 iterator.value().reset(); 1253 /* force update on the charts to draw now emptied metrics' data: */ 1252 1254 for (QMap<QString, UIChart*>::iterator iterator = m_charts.begin(); 1253 1255 iterator != m_charts.end(); ++iterator) 1254 1256 iterator.value()->update(); 1257 /* Reset the info labels: */ 1258 updateRAMGraphsAndMetric(0, 0); 1259 updateCPUGraphsAndMetric(0, 0); 1260 updateNetworkGraphsAndMetric(0, 0); 1261 updateDiskIOGraphsAndMetric(0, 0); 1262 updateVMExitMetric(0); 1255 1263 } 1256 1264
Note:
See TracChangeset
for help on using the changeset viewer.