summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2012-11-01 16:17:55 +0100
committerArno <am@disconnect.de>2012-11-01 16:17:55 +0100
commitd2758ae9c4fc6a25c7aaf4afce7f9dd371094266 (patch)
tree5674246d34d1921edec5f08f81081a9b985ec8c6 /main.cpp
parente4dec47385eb6e6906ddfa6b439e161a9b38c59a (diff)
downloadSheMov-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.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/main.cpp b/main.cpp
index 07c3f53..3606d17 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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();
}