Changeset 5648 in vbox
- Timestamp:
- Nov 9, 2007 2:05:25 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
r5082 r5648 89 89 void cannotOpenLicenseFile (QWidget *aParent, const QString &aPath); 90 90 #endif 91 92 bool confirmVMReset (QWidget *aParent); 91 93 92 94 void cannotOpenURL (const QString &aURL); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r5643 r5648 2190 2190 if (console) 2191 2191 { 2192 console->console().Reset(); 2192 if (vboxProblem().confirmVMReset (this)) 2193 console->console().Reset(); 2193 2194 } 2194 2195 } -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r5273 r5648 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 VM?</p>"), QString::null, 477 "confirmVMReset" /* autoConfirmId */); 478 } 479 473 480 void VBoxProblemReporter::cannotOpenURL (const QString &aURL) 474 481 {
Note:
See TracChangeset
for help on using the changeset viewer.