Bitcoin-Qt: fix opening verify message tab via main menu
This commit is contained in:
parent
4240bdaac1
commit
0dcf9e5308
1 changed files with 3 additions and 3 deletions
|
@ -56,7 +56,7 @@
|
|||
|
||||
const QString BitcoinGUI::DEFAULT_WALLET = "~Default";
|
||||
|
||||
BitcoinGUI::BitcoinGUI(QWidget *parent):
|
||||
BitcoinGUI::BitcoinGUI(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
clientModel(0),
|
||||
encryptWalletAction(0),
|
||||
|
@ -94,7 +94,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):
|
|||
// Create wallet frame and make it the central widget
|
||||
walletFrame = new WalletFrame(this);
|
||||
setCentralWidget(walletFrame);
|
||||
|
||||
|
||||
// Create status bar
|
||||
statusBar();
|
||||
|
||||
|
@ -488,7 +488,7 @@ void BitcoinGUI::gotoSignMessageTab(QString addr)
|
|||
|
||||
void BitcoinGUI::gotoVerifyMessageTab(QString addr)
|
||||
{
|
||||
if (walletFrame) walletFrame->gotoSignMessageTab(addr);
|
||||
if (walletFrame) walletFrame->gotoVerifyMessageTab(addr);
|
||||
}
|
||||
|
||||
void BitcoinGUI::setNumConnections(int count)
|
||||
|
|
Loading…
Reference in a new issue