Updated licenses to all files
[vlc-remote] / main.cpp
index b0145af..27922b5 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -1,25 +1,28 @@
 /*   VLC-REMOTE for MAEMO 5
- *   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>
- *   This program is free software; you can redistribute it and/or modify
- *   it under the terms of the GNU General Public License version 2,
- *   or (at your option) any later version, as published by the Free
- *   Software Foundation
- *
- *   This program is distributed in the hope that it will be useful,
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *   GNU General Public License for more details
- *
- *   You should have received a copy of the GNU General Public
- *   License along with this program; if not, write to the
- *   Free Software Foundation, Inc.,
- *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- */
+*   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>, Dru Moore <usr@dru-id.co.uk>
+*   This program is free software; you can redistribute it and/or modify
+*   it under the terms of the GNU General Public License version 2,
+*   or (at your option) any later version, as published by the Free
+*   Software Foundation
+*
+*   This program is distributed in the hope that it will be useful,
+*   but WITHOUT ANY WARRANTY; without even the implied warranty of
+*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*   GNU General Public License for more details
+*
+*   You should have received a copy of the GNU General Public
+*   License along with this program; if not, write to the
+*   Free Software Foundation, Inc.,
+*   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+*/
 #include <QtGui/QApplication>
 #include <QSettings>
-#include "playlistmainwindow.h"
+#include <QLocale>
+#include <QTextCodec>
+#include <QTranslator>
+#include <QDebug>
 #include "playermainwindow.h"
-
+#include "accountdialog.h"
 int main(int argc, char *argv[])
 {
     QApplication a(argc, argv);
@@ -35,9 +38,13 @@ int main(int argc, char *argv[])
 
     QTextCodec::setCodecForTr(QTextCodec::codecForName("utf8"));
 
-    PlayerMainWindow * mainwindow = new PlayerMainWindow;
 
-    mainwindow->showMaximized();
+    qDebug() << AccountDialog::currentIp();
+
+
+  PlayerMainWindow * mainwindow = new PlayerMainWindow;
+//
+   mainwindow->showMaximized();
 
     return a.exec();
 }