Changeset 8981 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- May 20, 2008 7:59:52 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxProblemReporter.cpp
r8978 r8981 675 675 676 676 /** 677 * @param strict if |true| then show the message even if there is no basic678 * error info available677 * @param strict If |false|, this method will silently return if the COM 678 * result code is E_NOTIMPL. 679 679 */ 680 680 void VBoxProblemReporter::cannotLoadMachineSettings (const CMachine &machine, … … 682 682 QWidget *parent /* = 0 */) 683 683 { 684 /* If COM result code is E_NOTIMPL, it means the requested object or 685 * function is intentionally missing (as in the OSE version). Don't show 686 * the error message in this case. */ 684 687 COMResult res (machine); 685 if (!strict && !res.errorInfo().isBasicAvailable())688 if (!strict && res.rc() == E_NOTIMPL) 686 689 return; 687 690
Note:
See TracChangeset
for help on using the changeset viewer.