Changeset 37570 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 21, 2011 10:31:26 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72412
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.cpp
r37470 r37570 915 915 } 916 916 917 void VBoxProblemReporter::cannotDeleteMachine(const CMachine &machine, const CProgress &progress) 918 { 919 message(mainWindowShown(), 920 Error, 921 tr("Failed to remove the virtual machine <b>%1</b>.").arg(machine.GetName()), 922 formatErrorInfo(progress.GetErrorInfo())); 923 } 924 917 925 void VBoxProblemReporter::cannotDiscardSavedState (const CConsole &console) 918 926 { -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.h
r37470 r37570 218 218 void cannotStopMachine (const CProgress &progress); 219 219 void cannotDeleteMachine (const CMachine &machine); 220 void cannotDeleteMachine(const CMachine &machine, const CProgress &progress); 220 221 void cannotDiscardSavedState (const CConsole &console); 221 222 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/VBoxSelectorWnd.cpp
r37468 r37570 768 768 vboxProblem().showModalProgressDialog(progress, item->name(), ":/progress_delete_90px.png", 0, true); 769 769 if (progress.GetResultCode() != 0) 770 vboxProblem().cannotDeleteMachine(machine );770 vboxProblem().cannotDeleteMachine(machine, progress); 771 771 } 772 772 }
Note:
See TracChangeset
for help on using the changeset viewer.