diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-05 19:18:40 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-05 19:18:40 +0100 |
commit | a80b1a03126f3f9101bb150c66cbcaa5f9f20354 (patch) | |
tree | ea4c599b6d817140750b2dfb2047bc6cdc4e105a /src | |
parent | c82cddcc5565867fa1ccb8b2ab1bec3e1058de96 (diff) |
[Qt] make event() and eventFilter() in askpassphrasedialog protected
Diffstat (limited to 'src')
-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 3a66fb5f37..838ad21beb 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); }; |