diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -6,7 +6,6 @@ */ #include <QApplication> -#include <QSplashScreen> #include "shemov.h" @@ -16,10 +15,6 @@ int main(int argc, char **argv){ QCoreApplication::setOrganizationDomain("hadante.servebeer.com"); QCoreApplication::setApplicationName("SheMov"); QCoreApplication::setApplicationVersion("1.0 TreeVersion"); - QPixmap splash(":/shemov_splash.png"); - QSplashScreen sp(splash); - sp.show(); - SheMov *sm = new SheMov; - sp.finish(sm); + (void) new SheMov; return app.exec(); } |