Changeset 4166 in vbox
- Timestamp:
- Aug 16, 2007 8:59:13 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23656
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r4165 r4166 120 120 void cannotDiscardSavedState (const CConsole &console); 121 121 122 void cannotSetSnapshotFolder (const CMachine &aMachine );122 void cannotSetSnapshotFolder (const CMachine &aMachine, const QString &aPath); 123 123 void cannotDiscardSnapshot (const CConsole &console, const CSnapshot &snapshot); 124 124 void cannotDiscardSnapshot (const CProgress &progress, const CSnapshot &snapshot); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r4165 r4166 753 753 } 754 754 755 void VBoxProblemReporter::cannotSetSnapshotFolder (const CMachine &aMachine) 755 void VBoxProblemReporter::cannotSetSnapshotFolder (const CMachine &aMachine, 756 const QString &aPath) 756 757 { 757 758 message ( 758 759 mainWindowShown(), 759 760 Error, 760 tr ("Failed to change the snapshot folder path."), 761 tr ("Failed to change the snapshot folder path of the " 762 "virtual machine <b>%1<b> to <nobr><b>%2</b></nobr>.") 763 .arg (aMachine.GetName()) 764 .arg (aPath), 761 765 formatErrorInfo (aMachine)); 762 766 } -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui.h
r4165 r4166 1853 1853 cmachine.SetSnapshotFolder (leSnapshotFolder->text()); 1854 1854 if (!cmachine.isOk()) 1855 vboxProblem().cannotSetSnapshotFolder (cmachine); 1855 vboxProblem() 1856 .cannotSetSnapshotFolder (cmachine, 1857 QDir::convertSeparators (leSnapshotFolder->text())); 1856 1858 } 1857 1859
Note:
See TracChangeset
for help on using the changeset viewer.