diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-11-07 13:53:18 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-11-07 13:53:26 +0100 |
commit | b744fdbf52b6d050e7f8a86f01e43cd18e9fd658 (patch) | |
tree | 9e8838baa394134022ca178d7a0cb457a133f8d9 /src | |
parent | 182e9090a5c999cdfc0103ad3b62c3b4cd10085d (diff) | |
parent | a80b1a03126f3f9101bb150c66cbcaa5f9f20354 (diff) |
Merge pull request #3209
a80b1a0 [Qt] make event() and eventFilter() in askpassphrasedialog protected (Philip Kaufmann)
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); }; |