diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-08-19 01:18:17 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-08-19 01:18:17 +0200 |
commit | b56648b2d624ad5933bbfae0dcac6f65bb96bd3b (patch) | |
tree | e86423eb28a17d5c2e3c9d977ebd05026767d962 /src/adblock/adblockwidget.h | |
parent | fixes wrong comment in rekonqui.rc that could lead to a parsing error that le... (diff) | |
download | rekonq-b56648b2d624ad5933bbfae0dcac6f65bb96bd3b.tar.xz |
Fix saving in adblock management
This original patch from fritz_van_tom has been modified by me
to fix a couple of "obsoleted" things not removed in the
previous changes.
My fault for them (and for the need of this patch), sorry.
REVIEW: 102362
Diffstat (limited to 'src/adblock/adblockwidget.h')
-rw-r--r-- | src/adblock/adblockwidget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/adblock/adblockwidget.h b/src/adblock/adblockwidget.h index 08194ada..daaf499e 100644 --- a/src/adblock/adblockwidget.h +++ b/src/adblock/adblockwidget.h @@ -43,12 +43,14 @@ class AdBlockWidget : public QWidget, private Ui::adblock public: AdBlockWidget(QWidget *parent = 0); - void save(); bool changed(); signals: void changed(bool); +public slots: + void save(); + private slots: void hasChanged(); |