Invisible registerdialog picture.
[speedfreak] / Client / main.cpp
index 66ab41e..dcf5597 100644 (file)
@@ -1,11 +1,17 @@
+/*
+ * Main
+ *
+ * @copyright  (c) 2010 Speed Freak team
+ * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
+ */
+
 #include <QtGui/QApplication>
-#include <QStyleFactory>
-#include "carmainwindow.h"
+#include "mainwindow.h"
 
 int main(int argc, char *argv[])
 {
     QApplication a(argc, argv);
-    CarMainWindow w;
+    MainWindow w;
     w.show();
     return a.exec();
 }