From 6f478a786926aa9526721456dba593c476445d8d Mon Sep 17 00:00:00 2001 From: timlinux Date: Mon, 19 Jan 2004 22:58:20 +0000 Subject: [PATCH] Moved splashscreen to constructor of qgisapp git-svn-id: http://svn.osgeo.org/qgis/trunk@527 c8812cc2-4d05-0410-92ff-de0c093fc19c --- src/main.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 3c4f107fe00..77e12b61b73 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -22,7 +22,6 @@ #include #include #include -#include //#include "qgis.h" #include "qgisapp.h" @@ -31,11 +30,6 @@ int main(int argc, char *argv[]) QApplication a(argc, argv); - // - // Set up the splash screen - // - SplashScreen *mySplash = new SplashScreen( ); - mySplash->setStatus("Loading QGis..."); // a.setFont(QFont("helvetica", 11)); QTranslator tor(0); @@ -59,8 +53,6 @@ int main(int argc, char *argv[]) qgis->show(); a.connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit())); - mySplash->finish( qgis ); - delete mySplash; // //turn control over to the main application loop... //