Changeset 5656 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Nov 9, 2007 4:48:52 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r5648 r5656 89 89 void cannotOpenLicenseFile (QWidget *aParent, const QString &aPath); 90 90 #endif 91 92 bool confirmVMReset (QWidget *aParent);93 91 94 92 void cannotOpenURL (const QString &aURL); … … 235 233 const QString &aLogFolder); 236 234 235 bool confirmVMReset (QWidget *aParent); 236 237 237 int remindAboutUnsetHD (QWidget *aParent); 238 238 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r5649 r5656 471 471 #endif 472 472 473 bool VBoxProblemReporter::confirmVMReset (QWidget *aParent)474 {475 return messageYesNo (aParent, Question,476 tr ("<p>Do you really want to reset the VM?</p>"), QString::null,477 "confirmVMReset" /* autoConfirmId */);478 }479 480 473 void VBoxProblemReporter::cannotOpenURL (const QString &aURL) 481 474 { … … 1705 1698 } 1706 1699 1700 /** 1701 * Returns @c true if the user has selected to reset the machine. 1702 */ 1703 bool VBoxProblemReporter::confirmVMReset (QWidget *aParent) 1704 { 1705 return messageYesNo (aParent, Question, 1706 tr ("<p>Do you really want to reset the virtual machine?</p>" 1707 "<p>When the machine is reset, unsaved data of all applications " 1708 "running inside it will be lost.</p>"), 1709 "confirmVMReset" /* autoConfirmId */); 1710 } 1711 1707 1712 int VBoxProblemReporter::remindAboutUnsetHD (QWidget *aParent) 1708 1713 { -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui
r5654 r5656 2304 2304 </property> 2305 2305 <property name="text"> 2306 <string>Enable USB &EHCI Controller</string>2306 <string>Enable USB E&HCI Controller</string> 2307 2307 </property> 2308 2308 <property name="whatsThis" stdset="0"> 2309 <string>When checked, enables the virtual USB EHCI controller of this machine providing USB2.0 support.</string>2309 <string>When checked, enables the virtual USB EHCI controller of this machine. The USB ECHI controller provides USB 2.0 support.</string> 2310 2310 </property> 2311 2311 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.