Changeset 90299 in vbox
- Timestamp:
- Jul 23, 2021 10:58:13 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145854
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/manager
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.cpp
r90088 r90299 30 30 #include "UIChooser.h" 31 31 #include "UIMessageCenter.h" 32 #include "UINotificationCenter.h" 32 33 #include "UIVirtualBoxManager.h" 33 34 #include "UIVirtualBoxManagerWidget.h" … … 718 719 } 719 720 } 721 722 /* Create notification-center: */ 723 UINotificationCenter::create(this); 720 724 721 725 /* Update toolbar finally: */ … … 1042 1046 } 1043 1047 1048 void UIVirtualBoxManagerWidget::cleanupWidgets() 1049 { 1050 UINotificationCenter::destroy(); 1051 } 1052 1044 1053 void UIVirtualBoxManagerWidget::cleanup() 1045 1054 { 1046 1055 /* Cleanup everything: */ 1047 1056 cleanupConnections(); 1057 cleanupWidgets(); 1048 1058 } 1049 1059 -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.h
r89248 r90299 304 304 /** Cleanups connections. */ 305 305 void cleanupConnections(); 306 /** Cleanups widgets. */ 307 void cleanupWidgets(); 306 308 /** Cleanups all. */ 307 309 void cleanup();
Note:
See TracChangeset
for help on using the changeset viewer.