aboutsummaryrefslogtreecommitdiff
path: root/src/qt/askpassphrasedialog.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-10-25 11:52:34 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-10-25 11:52:34 +0200
commit83a3fb81f3da38461457e8dcdf5baf27b662a4b3 (patch)
treef018e0d31509d0519fbdebb1e0bbc6cdeb78d299 /src/qt/askpassphrasedialog.h
parent2d53ba2c69f975a163d3332ff3879a40b1367b39 (diff)
downloadbitcoin-83a3fb81f3da38461457e8dcdf5baf27b662a4b3.tar.xz
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.h2
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