From 8efcc335de760091bbb2735c8ea5ccf76e5a891b Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Thu, 28 Apr 2016 19:03:07 +0800 Subject: [PATCH] Switch to use SettingsStorage class --- src/base/preferences.cpp | 50 ---------------------------------------- src/base/preferences.h | 10 -------- 2 files changed, 60 deletions(-) diff --git a/src/base/preferences.cpp b/src/base/preferences.cpp index 0d4574a6f..d951db38d 100644 --- a/src/base/preferences.cpp +++ b/src/base/preferences.cpp @@ -1277,56 +1277,6 @@ void Preferences::setSearchEngDisabled(const QStringList &engines) setValue("SearchEngines/disabledEngines", engines); } -QString Preferences::getCreateTorLastAddPath() const -{ - return value("CreateTorrent/last_add_path", QDir::homePath()).toString(); -} - -void Preferences::setCreateTorLastAddPath(const QString &path) -{ - setValue("CreateTorrent/last_add_path", path); -} - -QString Preferences::getCreateTorLastSavePath() const -{ - return value("CreateTorrent/last_save_path", QDir::homePath()).toString(); -} - -void Preferences::setCreateTorLastSavePath(const QString &path) -{ - setValue("CreateTorrent/last_save_path", path); -} - -QString Preferences::getCreateTorTrackers() const -{ - return value("CreateTorrent/TrackerList").toString(); -} - -void Preferences::setCreateTorTrackers(const QString &path) -{ - setValue("CreateTorrent/TrackerList", path); -} - -QByteArray Preferences::getCreateTorGeometry() const -{ - return value("CreateTorrent/dimensions").toByteArray(); -} - -void Preferences::setCreateTorGeometry(const QByteArray &geometry) -{ - setValue("CreateTorrent/dimensions", geometry); -} - -bool Preferences::getCreateTorIgnoreRatio() const -{ - return value("CreateTorrent/IgnoreRatio").toBool(); -} - -void Preferences::setCreateTorIgnoreRatio(const bool ignore) -{ - setValue("CreateTorrent/IgnoreRatio", ignore); -} - QString Preferences::getTorImportLastContentDir() const { return value("TorrentImport/LastContentDir", QDir::homePath()).toString(); diff --git a/src/base/preferences.h b/src/base/preferences.h index 0620f5f48..60a936657 100644 --- a/src/base/preferences.h +++ b/src/base/preferences.h @@ -305,16 +305,6 @@ public: void setSearchTabHeaderState(const QByteArray &state); QStringList getSearchEngDisabled() const; void setSearchEngDisabled(const QStringList &engines); - QString getCreateTorLastAddPath() const; - void setCreateTorLastAddPath(const QString &path); - QString getCreateTorLastSavePath() const; - void setCreateTorLastSavePath(const QString &path); - QString getCreateTorTrackers() const; - void setCreateTorTrackers(const QString &path); - QByteArray getCreateTorGeometry() const; - void setCreateTorGeometry(const QByteArray &geometry); - bool getCreateTorIgnoreRatio() const; - void setCreateTorIgnoreRatio(const bool ignore); QString getTorImportLastContentDir() const; void setTorImportLastContentDir(const QString &path); QByteArray getTorImportGeometry() const;