]> Creatis software - clitk.git/blobdiff - vv/vv.cxx
remove useless logs
[clitk.git] / vv / vv.cxx
index 1f0f13adb382a217e79b87e59de4779127fcc3d6..fe19cc381aa76733f03afbea25b951c61eff4b81 100644 (file)
--- a/vv/vv.cxx
+++ b/vv/vv.cxx
@@ -21,6 +21,7 @@ You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 =========================================================================*/
+
 #include <utility>
 #include <cassert>
 #include <QApplication>
@@ -29,22 +30,26 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #include <QTimer>
 #include <QDesktopWidget>
 
-#include "clitkCommon.h"
+#include "clitkIO.h"
 #include "vvMainWindow.h"
-#include "vvInit.h"
-
 #include "vvConstants.h"
 
+//------------------------------------------------------------------------------
 int main( int argc, char** argv )
 {
-    initialize_IO();
+#ifdef _WIN32
+    HWND hWnd = GetConsoleWindow();
+    ShowWindow( hWnd, SW_HIDE );
+#endif
+
+    CLITK_INIT;
 
     QApplication app( argc, argv );
     Q_INIT_RESOURCE(vvIcons);
     //QPixmap pixmap(":/splashscreen.PNG");
     QSplashScreen *splash = new QSplashScreen(QPixmap(QString::fromUtf8(":/new/prefix1/splashscreen.PNG")));
     /*splash->showMessage("VV 1.0 developped by Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr and CREATIS-LRMN http://www.creatis.insa-lyon.fr",(Qt::AlignRight | Qt::AlignBottom));*/
-//  splash->show();
+    //  splash->show();
     QTimer::singleShot(2000, splash, SLOT(close()));
     while (!splash->isHidden())
         app.processEvents();