Changeset 90476 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 2, 2021 1:14:28 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationProgressTask.cpp
r90290 r90476 50 50 { 51 51 /* Handle progress-wrapper errors: */ 52 if ( !comProgress.GetCanceled() && (!comProgress.isOk() || comProgress.GetResultCode() != 0))52 if (comProgress.isNotNull() && !comProgress.GetCanceled() && (!comProgress.isOk() || comProgress.GetResultCode() != 0)) 53 53 m_strErrorMessage = UIErrorString::formatErrorInfo(comProgress); 54 54 }
Note:
See TracChangeset
for help on using the changeset viewer.