Changeset 72360 in vbox
- Timestamp:
- May 28, 2018 4:34:15 PM (7 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIStarter.cpp
r72347 r72360 109 109 } 110 110 111 void UIStarter::sltS howUI()111 void UIStarter::sltStartUI() 112 112 { 113 113 /* Exit if VBoxGlobal is not valid: */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIStarter.h
r71369 r72360 55 55 private slots: 56 56 57 /** S hows corresponding part of the UI. */58 void sltS howUI();57 /** Starts corresponding part of the UI. */ 58 void sltStartUI(); 59 59 /** Restarts corresponding part of the UI. */ 60 60 void sltRestartUI(); … … 78 78 79 79 #endif /* !___UIStarter_h___ */ 80 -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r72242 r72360 488 488 } 489 489 490 /* Request to S howUI _after_ QApplication executed: */491 QMetaObject::invokeMethod(gStarter, "sltS howUI", Qt::QueuedConnection);490 /* Request to Start UI _after_ QApplication executed: */ 491 QMetaObject::invokeMethod(gStarter, "sltStartUI", Qt::QueuedConnection); 492 492 493 493 /* Start application: */
Note:
See TracChangeset
for help on using the changeset viewer.