qt: Unify AboutDialog and HelpMessageDialog

They share so much code and functionality that they may as well
be one class.
This commit is contained in:
Wladimir J. van der Laan
2014-06-11 21:44:47 +02:00
parent 45615af26f
commit 5c97aae6da
6 changed files with 53 additions and 227 deletions

View File

@@ -549,8 +549,7 @@ void BitcoinGUI::aboutClicked()
if(!clientModel)
return;
AboutDialog dlg(this);
dlg.setModel(clientModel);
HelpMessageDialog dlg(this, true);
dlg.exec();
}