diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-03-24 10:51:58 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-03-24 10:51:58 +0100 |
commit | 288b838f75f91205d81d5d46201eae90e8abd51a (patch) | |
tree | a2407cbb316c3f7c60292e3e790b4b8cfa750892 /src/settings/adblockwidget.cpp | |
parent | Cleaning AdblockManager::loadRules slot (diff) | |
download | rekonq-288b838f75f91205d81d5d46201eae90e8abd51a.tar.xz |
This commit should finally fix settings handling
Diffstat (limited to 'src/settings/adblockwidget.cpp')
-rw-r--r-- | src/settings/adblockwidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/settings/adblockwidget.cpp b/src/settings/adblockwidget.cpp index 471f57f0..39df2c36 100644 --- a/src/settings/adblockwidget.cpp +++ b/src/settings/adblockwidget.cpp @@ -174,6 +174,9 @@ void AdBlockWidget::save() ReKonfig::setAdBlockEnabled( checkEnableAdblock->isChecked() ); ReKonfig::setHideAdsEnabled( checkHideAds->isChecked() ); ReKonfig::setUpdateInterval( spinBox->value() ); + + _changed = false; + emit changed(false); } |