Comment 3 for bug 1352251

Revision history for this message
Alberto Mardegan (mardy) wrote : Re: Splash screen is shown as soon as QGuiApplication is instantiated

It's easy:

int main(int argc, char **argv)
{
    QGuiApplication app;
    return app.exec();
}

This program should not trigger a splash screen when run. :-)