Changeset 108208 in vbox
- Timestamp:
- Feb 13, 2025 4:44:37 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167528
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/manager/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/tools/UITools.cpp
r108202 r108208 180 180 } 181 181 182 void UITools::cleanupView() 183 { 184 delete m_pToolsView; 185 m_pToolsView = 0; 186 } 187 188 void UITools::cleanupModel() 189 { 190 delete m_pToolsModel; 191 m_pToolsModel = 0; 192 } 193 182 194 void UITools::cleanup() 183 195 { 184 196 /* Cleanup everything: */ 185 197 cleanupConnections(); 186 } 198 cleanupView(); 199 cleanupModel(); 200 } -
trunk/src/VBox/Frontends/VirtualBox/src/manager/tools/UITools.h
r108201 r108208 119 119 /** Cleanups connections. */ 120 120 void cleanupConnections(); 121 /** Cleanups view. */ 122 void cleanupView(); 123 /** Cleanups model. */ 124 void cleanupModel(); 121 125 /** Cleanups all. */ 122 126 void cleanup();
Note:
See TracChangeset
for help on using the changeset viewer.