summaryrefslogtreecommitdiff
path: root/src/settings/generalwidget.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-03-25 10:45:05 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-04-12 02:30:00 +0200
commitbaa03e5adc8a9022b64b77a6450491738724ab6d (patch)
treedb38025317a3af0cdaabca7518c733a9b1481653 /src/settings/generalwidget.cpp
parentUpdate docs to 0.9.0, remove extra screenshots (unused). (diff)
downloadrekonq-baa03e5adc8a9022b64b77a6450491738724ab6d.tar.xz
Privacy tab settings
Clean up (again) rekonq settings, adding "advanced" and "privacy" sections and removing the "network" one, merged here and there with the other ones
Diffstat (limited to 'src/settings/generalwidget.cpp')
-rw-r--r--src/settings/generalwidget.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/settings/generalwidget.cpp b/src/settings/generalwidget.cpp
index 226c11c9..9e19f801 100644
--- a/src/settings/generalwidget.cpp
+++ b/src/settings/generalwidget.cpp
@@ -55,10 +55,6 @@ GeneralWidget::GeneralWidget(QWidget *parent)
checkKGetPresence();
- KConfigGroup cg = KConfigGroup(KSharedConfig::openConfig("kioslaverc", KConfig::NoGlobals), QString());
- doNotTrackCheckBox->setChecked(cg.readEntry("DoNotTrack", false));
-
- connect(doNotTrackCheckBox, SIGNAL(clicked()), this, SLOT(hasChanged()));
connect(kcfg_homePage, SIGNAL(editingFinished()), this, SLOT(fixHomePageURL()));
kcfg_downloadPath->setMode(KFile::Directory);
@@ -76,10 +72,6 @@ void GeneralWidget::save()
{
ReKonfig::setAskDownloadPath(askDownloadYes->isChecked());
- KConfigGroup cg = KConfigGroup(KSharedConfig::openConfig("kioslaverc", KConfig::NoGlobals), QString());
- cg.writeEntry("DoNotTrack", doNotTrackCheckBox->isChecked());
- cg.sync();
-
_changed = false;
}