- Timestamp:
- Aug 16, 2007 8:30:32 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23655
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r4090 r4165 120 120 void cannotDiscardSavedState (const CConsole &console); 121 121 122 void cannotSetSnapshotFolder (const CMachine &aMachine); 122 123 void cannotDiscardSnapshot (const CConsole &console, const CSnapshot &snapshot); 123 124 void cannotDiscardSnapshot (const CProgress &progress, const CSnapshot &snapshot); … … 129 130 void cannotFindMachineByName (const CVirtualBox &vbox, const QString &name); 130 131 131 void cannotEnterSeamlessMode (ULONG aWidth, ULONG aHeight, 132 ULONG aBpp, ULONG aVRam); 132 void cannotEnterSeamlessMode (ULONG aWidth, ULONG aHeight, ULONG aBpp); 133 133 134 134 bool confirmMachineDeletion (const CMachine &machine); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r4146 r4165 1815 1815 { 1816 1816 vboxProblem().cannotEnterSeamlessMode (screen.width(), 1817 screen.height(), QColor::numBitPlanes() , vRamSize);1817 screen.height(), QColor::numBitPlanes()); 1818 1818 vmSeamlessAction->setOn (false); 1819 1819 return; -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r4146 r4165 753 753 } 754 754 755 void VBoxProblemReporter::cannotSetSnapshotFolder (const CMachine &aMachine) 756 { 757 message ( 758 mainWindowShown(), 759 Error, 760 tr ("Failed to change the snapshot folder path."), 761 formatErrorInfo (aMachine)); 762 } 763 755 764 void VBoxProblemReporter::cannotDiscardSnapshot (const CConsole &console, 756 765 const CSnapshot &snapshot) … … 843 852 void VBoxProblemReporter::cannotEnterSeamlessMode (ULONG aWidth, 844 853 ULONG aHeight, 845 ULONG aBpp , ULONG aVRam)854 ULONG aBpp) 846 855 { 847 856 message (&vboxGlobal().consoleWnd(), Error, -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui.h
r4071 r4165 1850 1850 /* Saved state folder */ 1851 1851 if (leSnapshotFolder->isModified()) 1852 { 1852 1853 cmachine.SetSnapshotFolder (leSnapshotFolder->text()); 1854 if (!cmachine.isOk()) 1855 vboxProblem().cannotSetSnapshotFolder (cmachine); 1856 } 1853 1857 1854 1858 /* Description */
Note:
See TracChangeset
for help on using the changeset viewer.