Changeset 91844 in vbox
- Timestamp:
- Oct 19, 2021 5:17:21 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationCenter.cpp
r91755 r91844 241 241 /* Is progress still valid? */ 242 242 if (guardProgress.isNull()) 243 return; 244 /* Is progress still running? */ 245 if (guardProgress->isFinished()) 243 246 return; 244 247 … … 398 401 void UINotificationCenter::sltHandleProgressFinished() 399 402 { 400 /* Make sure event-loop is running: */ 401 AssertPtrReturnVoid(m_pEventLoop.data()); 402 403 /* Break the loop: */ 404 m_pEventLoop->exit(); 403 /* Break the loop if exists: */ 404 if (m_pEventLoop) 405 m_pEventLoop->exit(); 405 406 } 406 407
Note:
See TracChangeset
for help on using the changeset viewer.