- Timestamp:
- Dec 21, 2010 12:53:59 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.cpp
r35273 r35274 2146 2146 if (!pParent) 2147 2147 pParent = mainWindowShown(); 2148 QString strErrInfo = !extPackFile.isOk() ? formatErrorInfo(extPackFile) : formatErrorInfo(progress.GetErrorInfo()); 2148 QString strErrInfo = !extPackFile.isOk() || progress.isNull() 2149 ? formatErrorInfo(extPackFile) : formatErrorInfo(progress.GetErrorInfo()); 2149 2150 message (pParent, 2150 2151 Error, … … 2158 2159 if (!pParent) 2159 2160 pParent = mainWindowShown(); 2160 QString strErrInfo = !extPackManager.isOk() ? formatErrorInfo(extPackManager) : formatErrorInfo(progress.GetErrorInfo()); 2161 QString strErrInfo = !extPackManager.isOk() || progress.isNull() 2162 ? formatErrorInfo(extPackManager) : formatErrorInfo(progress.GetErrorInfo()); 2161 2163 message (pParent, 2162 2164 Error,
Note:
See TracChangeset
for help on using the changeset viewer.