Changeset 108199 in vbox
- Timestamp:
- Feb 13, 2025 3:42:40 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167517
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/snapshots
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/snapshots/UISnapshotPane.cpp
r107688 r108199 684 684 } 685 685 686 void UISnapshotPane::sltDetachCOM() 687 { 688 /* Clear machine item list: */ 689 setMachineItems(QList<UIVirtualMachineItem*>()); 690 } 691 686 692 void UISnapshotPane::sltHandleMachineDataChange(const QUuid &uMachineId) 687 693 { … … 1332 1338 void UISnapshotPane::prepareConnections() 1333 1339 { 1340 /* Install cleanup handler: */ 1341 connect(&uiCommon(), &UICommon::sigAskToDetachCOM, 1342 this, &UISnapshotPane::sltDetachCOM); 1343 1334 1344 /* Configure Main event connections: */ 1335 1345 connect(gVBoxEvents, &UIVirtualBoxEventHandler::sigMachineDataChange, -
trunk/src/VBox/Frontends/VirtualBox/src/snapshots/UISnapshotPane.h
r106061 r108199 111 111 112 112 private slots: 113 114 /** @name Common signal handlers. 115 * @{ */ 116 void sltDetachCOM(); 117 /** @} */ 113 118 114 119 /** @name Main event handlers.
Note:
See TracChangeset
for help on using the changeset viewer.