diff options
| author | Philip Kaufmann <[email protected]> | 2013-11-05 19:18:40 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-11-05 19:18:40 +0100 |
| commit | a80b1a03126f3f9101bb150c66cbcaa5f9f20354 (patch) | |
| tree | ea4c599b6d817140750b2dfb2047bc6cdc4e105a | |
| parent | qt: remove unused signal from addresstablemodel (diff) | |
| download | discoin-a80b1a03126f3f9101bb150c66cbcaa5f9f20354.tar.xz discoin-a80b1a03126f3f9101bb150c66cbcaa5f9f20354.zip | |
[Qt] make event() and eventFilter() in askpassphrasedialog protected
| -rw-r--r-- | src/qt/askpassphrasedialog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/askpassphrasedialog.h b/src/qt/askpassphrasedialog.h index 3a66fb5f3..838ad21be 100644 --- a/src/qt/askpassphrasedialog.h +++ b/src/qt/askpassphrasedialog.h @@ -41,6 +41,8 @@ private: private slots: void textChanged(); + +protected: bool event(QEvent *event); bool eventFilter(QObject *object, QEvent *event); }; |