Invisible registerdialog picture.
[speedfreak] / Client / main.cpp
index 68e444e..dcf5597 100644 (file)
@@ -1,18 +1,17 @@
-/**
-  * CarMainWindow main class
-  *
-  * @author     Toni Jussila <toni.jussila@fudeco.com>
-  * @copyright  (c) 2010 Speed Freak team
-  * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
-  */
+/*
+ * Main
+ *
+ * @copyright  (c) 2010 Speed Freak team
+ * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
+ */
 
 #include <QtGui/QApplication>
-#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();
 }