Changeset 47609 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 8, 2013 10:56:04 AM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIPopupCenter.cpp
r47523 r47609 340 340 } 341 341 342 /* Delete popup-stack: */ 343 delete m_stacks[strPopupStackID]; 342 /* Delete popup-stack asyncronously. 343 * To avoid issues with events which already posted: */ 344 UIPopupStack *pPopupStack = m_stacks[strPopupStackID]; 344 345 m_stacks.remove(strPopupStackID); 346 pPopupStack->deleteLater(); 345 347 } 346 348 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupStackViewport.cpp
r47523 r47609 140 140 emit sigPopupPaneDone(strPopupPaneID, iResultCode); 141 141 142 /* Cleanup the popup-pane: */ 142 /* Delete popup-pane asyncronously. 143 * To avoid issues with events which already posted: */ 143 144 m_panes.remove(strPopupPaneID); 144 delete pPopupPane;145 pPopupPane->deleteLater(); 145 146 146 147 /* Notify listeners about popup-pane removed: */
Note:
See TracChangeset
for help on using the changeset viewer.