Browse Source

Bitcoin-Qt: fix opening verify message tab via main menu

0.8
Philip Kaufmann 12 years ago
parent
commit
0dcf9e5308
  1. 6
      src/qt/bitcoingui.cpp

6
src/qt/bitcoingui.cpp

@ -56,7 +56,7 @@
const QString BitcoinGUI::DEFAULT_WALLET = "~Default"; const QString BitcoinGUI::DEFAULT_WALLET = "~Default";
BitcoinGUI::BitcoinGUI(QWidget *parent): BitcoinGUI::BitcoinGUI(QWidget *parent) :
QMainWindow(parent), QMainWindow(parent),
clientModel(0), clientModel(0),
encryptWalletAction(0), encryptWalletAction(0),
@ -94,7 +94,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):
// Create wallet frame and make it the central widget // Create wallet frame and make it the central widget
walletFrame = new WalletFrame(this); walletFrame = new WalletFrame(this);
setCentralWidget(walletFrame); setCentralWidget(walletFrame);
// Create status bar // Create status bar
statusBar(); statusBar();
@ -488,7 +488,7 @@ void BitcoinGUI::gotoSignMessageTab(QString addr)
void BitcoinGUI::gotoVerifyMessageTab(QString addr) void BitcoinGUI::gotoVerifyMessageTab(QString addr)
{ {
if (walletFrame) walletFrame->gotoSignMessageTab(addr); if (walletFrame) walletFrame->gotoVerifyMessageTab(addr);
} }
void BitcoinGUI::setNumConnections(int count) void BitcoinGUI::setNumConnections(int count)

Loading…
Cancel
Save