diff options
author | Arno <am@disconnect.de> | 2012-11-01 16:17:55 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2012-11-01 16:17:55 +0100 |
commit | d2758ae9c4fc6a25c7aaf4afce7f9dd371094266 (patch) | |
tree | 5674246d34d1921edec5f08f81081a9b985ec8c6 /main.cpp | |
parent | e4dec47385eb6e6906ddfa6b439e161a9b38c59a (diff) | |
download | SheMov-d2758ae9c4fc6a25c7aaf4afce7f9dd371094266.tar.gz SheMov-d2758ae9c4fc6a25c7aaf4afce7f9dd371094266.tar.bz2 SheMov-d2758ae9c4fc6a25c7aaf4afce7f9dd371094266.zip |
Fix Splash1.1.0
Actually display splash screen and show what we're doing.
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(); } |