diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-10-25 11:52:34 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-10-25 11:52:34 +0200 |
commit | 83a3fb81f3da38461457e8dcdf5baf27b662a4b3 (patch) | |
tree | f018e0d31509d0519fbdebb1e0bbc6cdeb78d299 /src/qt/askpassphrasedialog.h | |
parent | 2d53ba2c69f975a163d3332ff3879a40b1367b39 (diff) |
ensure AskPassphraseDialog::eventFilter forwards events
- instead of "return false;" use "return QDialog::eventFilter(object,
event);" to harmonize this event filter with our default behaviour
- remove orphan spaces found while editting the files
Diffstat (limited to 'src/qt/askpassphrasedialog.h')
-rw-r--r-- | src/qt/askpassphrasedialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/askpassphrasedialog.h b/src/qt/askpassphrasedialog.h index b500ff49bf..338853ce22 100644 --- a/src/qt/askpassphrasedialog.h +++ b/src/qt/askpassphrasedialog.h @@ -39,7 +39,7 @@ private: private slots: void textChanged(); bool event(QEvent *event); - bool eventFilter(QObject *, QEvent *event); + bool eventFilter(QObject *object, QEvent *event); }; #endif // ASKPASSPHRASEDIALOG_H |