VirtualBox

Changeset 59493 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Jan 27, 2016 3:46:41 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
105261
Message:

FE/Qt: ​​​bugref:8200: Preventing race crash on QApp startup.

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  
    46644664#endif /* VBOX_WITH_DEBUGGER_GUI */
    46654665
    4666 bool VBoxGlobal::showUI()
     4666void VBoxGlobal::showUI()
    46674667{
    46684668    /* Load application settings: */
     
    46724672    if (!isVMConsoleProcess())
    46734673    {
    4674         /* Make sure Selector UI is permitted: */
     4674        /* Make sure Selector UI is permitted, quit if not: */
    46754675        if (appSettings.isFeatureActive("noSelector"))
    46764676        {
    46774677            msgCenter().cannotStartSelector();
    4678             return false;
     4678            return QApplication::quit();
    46794679        }
    46804680
     
    46984698    else
    46994699    {
    4700         /* Make sure machine is started: */
     4700        /* Make sure machine is started, quit if not: */
    47014701        if (!UIMachine::startMachine(vboxGlobal().managedVMUuid()))
    4702             return false;
    4703     }
    4704 
    4705     /* True by default: */
    4706     return true;
     4702            return QApplication::quit();
     4703    }
    47074704}
    47084705
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h

    r59031 r59493  
    194194    bool processArgs();
    195195
    196     /** Shows UI. */
    197     bool showUI();
    198 
    199196    bool switchToMachine(CMachine &machine);
    200197
     
    503500    void prepare();
    504501    void cleanup();
     502
     503    /** Shows UI. */
     504    void showUI();
    505505
    506506    /** Handles the VBoxSVC availability change. */
  • trunk/src/VBox/Frontends/VirtualBox/src/main.cpp

    r59092 r59493  
    519519                break;
    520520
    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);
    524523
    525524            /* Start application: */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette