Update async methods! Now valid ip is detected
[vlc-remote] / configdialog.cpp
index f397e10..b65d414 100644 (file)
@@ -1,6 +1,24 @@
+/*   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.
+ */
 #include "configdialog.h"
 #include "ui_configdialog.h"
 #include <QSettings>
+
 ConfigDialog::ConfigDialog(QWidget *parent) :
         QDialog(parent),
         ui(new Ui::ConfigDialog)
@@ -28,8 +46,6 @@ void ConfigDialog::changeEvent(QEvent *e)
 }
 void ConfigDialog::load()
 {
-
-
     QSettings settings;
     ui->lineEdit->setText(settings.value("ip").toString());
 
@@ -42,7 +58,4 @@ void ConfigDialog::save()
     settings.setValue("ip",ui->lineEdit->text());
 
     emit accept();
-
-
-
 }