Added build script of Debian
[qtrapids] / src / client / PreferencesDialog.cpp
index f404336..4f6bbf1 100644 (file)
@@ -1,11 +1,9 @@
 /***************************************************************************
- *   Copyright (C) 2009 by Lassi Väätämöinen   *
- *   lassi.vaatamoinen@ixonos.com   *
+ *   Copyright (C) 2010 by Ixonos Plc   *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   it under the terms of the GNU General Public License as published by  *
- *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
+ *   the Free Software Foundation; version 2 of the License.               *
  *                                                                         *
  *   This program is distributed in the hope that it will be useful,       *
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
@@ -104,6 +102,10 @@ PreferencesDialog::~PreferencesDialog()
 // ======================== SLOTS ========================
 void PreferencesDialog::on_browseDirButtonClicked()
 {
+       QString dir = QFileDialog::getExistingDirectory(this, tr("Download directory"), QString(), QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
+       on_downloadDirectorySelected(dir);
+       
+       /*
        QFileDialog *dialog
        = new QFileDialog(this, "Download directory",
                          QString(), tr("Torrent files (*.torrent)"));
@@ -115,6 +117,7 @@ void PreferencesDialog::on_browseDirButtonClicked()
                this, SLOT(on_downloadDirectorySelected(const QString&)));
 
        dialog->show();
+       */
 }
 
 void PreferencesDialog::on_buttonClicked(QAbstractButton* button)
@@ -138,7 +141,7 @@ void PreferencesDialog::on_buttonClicked(QAbstractButton* button)
        }
 }
 
-void PreferencesDialog::on_downloadDirectorySelected(const QString& directory)
+void PreferencesDialog::on_downloadDirectorySelected(QString directory)
 {
        qDebug() << "PreferencesDialog::on_downloadDirectorySelected(): " << directory;
        // Torrent filename empty, do nothing.