diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-06-11 21:44:47 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-06-12 16:11:56 +0200 |
commit | 5c97aae6da813ce4873651b31f75b26ea6f1352f (patch) | |
tree | 49a097ba2ee9219b1b1ae5b0bfb8f48897a4dbfe /src/qt/bitcoingui.cpp | |
parent | 45615af26fe374fa996c116984a05f0a632a0e79 (diff) |
qt: Unify AboutDialog and HelpMessageDialog
They share so much code and functionality that they may as well
be one class.
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 847a3ab8f1..30f5ec8939 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -549,8 +549,7 @@ void BitcoinGUI::aboutClicked() if(!clientModel) return; - AboutDialog dlg(this); - dlg.setModel(clientModel); + HelpMessageDialog dlg(this, true); dlg.exec(); } |