Make Quassel compile on MSVC.
[quassel.git] / src / common / main.cpp
index 102c9d4..6b39f5f 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-08 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
-#include "global.h"
-#include "identity.h"
-#include "settings.h"
+#include <QDateTime>
 #include <QString>
+#include <QTimer>
 #include <QTranslator>
 
+#include "global.h"
+#include "settings.h"
+
 #if defined BUILD_CORE
 #include <QCoreApplication>
 #include <QDir>
@@ -61,6 +63,8 @@ int main(int argc, char **argv) {
 
   Global::registerMetaTypes();
 
+#include "../../version.inc"
+
 #if defined BUILD_CORE
   Global::runMode = Global::CoreOnly;
   QCoreApplication app(argc, argv);
@@ -72,6 +76,8 @@ int main(int argc, char **argv) {
   QApplication app(argc, argv);
 #endif
 
+  qsrand(QDateTime::currentDateTime().toTime_t());
+
   // Set up i18n support
   QLocale locale = QLocale::system();
 
@@ -106,11 +112,13 @@ int main(int argc, char **argv) {
 #ifndef BUILD_CORE
   QtUi *gui = new QtUi();
   Client::init(gui);
-  gui->init();
+  // init gui only after the event loop has started
+  QTimer::singleShot(0, gui, SLOT(init()));
+  //gui->init();
 #endif
 
 #ifndef BUILD_QTUI
-  if(args.contains("--norestore")) {
+  if(!args.contains("--norestore")) {
     Core::restoreState();
   }
 #endif