Changeset 59493 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 27, 2016 3:46:41 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105261
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r59381 r59493 4664 4664 #endif /* VBOX_WITH_DEBUGGER_GUI */ 4665 4665 4666 boolVBoxGlobal::showUI()4666 void VBoxGlobal::showUI() 4667 4667 { 4668 4668 /* Load application settings: */ … … 4672 4672 if (!isVMConsoleProcess()) 4673 4673 { 4674 /* Make sure Selector UI is permitted : */4674 /* Make sure Selector UI is permitted, quit if not: */ 4675 4675 if (appSettings.isFeatureActive("noSelector")) 4676 4676 { 4677 4677 msgCenter().cannotStartSelector(); 4678 return false;4678 return QApplication::quit(); 4679 4679 } 4680 4680 … … 4698 4698 else 4699 4699 { 4700 /* Make sure machine is started : */4700 /* Make sure machine is started, quit if not: */ 4701 4701 if (!UIMachine::startMachine(vboxGlobal().managedVMUuid())) 4702 return false; 4703 } 4704 4705 /* True by default: */ 4706 return true; 4702 return QApplication::quit(); 4703 } 4707 4704 } 4708 4705 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
r59031 r59493 194 194 bool processArgs(); 195 195 196 /** Shows UI. */197 bool showUI();198 199 196 bool switchToMachine(CMachine &machine); 200 197 … … 503 500 void prepare(); 504 501 void cleanup(); 502 503 /** Shows UI. */ 504 void showUI(); 505 505 506 506 /** Handles the VBoxSVC availability change. */ -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r59092 r59493 519 519 break; 520 520 521 /* Exit if VBoxGlobal is unable to show UI: */ 522 if (!vboxGlobal().showUI()) 523 break; 521 /* Request to Show UI _after_ QApplication started: */ 522 QMetaObject::invokeMethod(&vboxGlobal(), "showUI", Qt::QueuedConnection); 524 523 525 524 /* Start application: */
Note:
See TracChangeset
for help on using the changeset viewer.