aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletstack.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-04-01 14:43:50 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-04-01 14:43:50 +0200
commitabf11f79ae2a9767778b36a2f9e0c4bc97624602 (patch)
tree3537530880bb6484b20e897a88f852bf3acf339c /src/qt/walletstack.h
parent71fcfbe79b85ab9719b5264a0a5c34b2fb2c6127 (diff)
downloadbitcoin-abf11f79ae2a9767778b36a2f9e0c4bc97624602.tar.xz
fix "send coins" via context menu in address book
- the send coins context menu entry was not working anymore, because a non current version of #2220 was merged onto current master - also removes some unneeded spaces and adds a comment to WalletModel::getNumTransactions()
Diffstat (limited to 'src/qt/walletstack.h')
-rw-r--r--src/qt/walletstack.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qt/walletstack.h b/src/qt/walletstack.h
index f3485816e9..ea4cc121d1 100644
--- a/src/qt/walletstack.h
+++ b/src/qt/walletstack.h
@@ -45,16 +45,16 @@ public:
~WalletStack();
void setBitcoinGUI(BitcoinGUI *gui) { this->gui = gui; }
-
+
void setClientModel(ClientModel *clientModel) { this->clientModel = clientModel; }
-
+
bool addWallet(const QString& name, WalletModel *walletModel);
bool removeWallet(const QString& name);
-
+
void removeAllWallets();
bool handleURI(const QString &uri);
-
+
void showOutOfSyncWarning(bool fShow);
private:
@@ -76,7 +76,7 @@ public slots:
/** Switch to receive coins page */
void gotoReceiveCoinsPage();
/** Switch to send coins page */
- void gotoSendCoinsPage();
+ void gotoSendCoinsPage(QString addr = "");
/** Show Sign/Verify Message dialog and switch to sign message tab */
void gotoSignMessageTab(QString addr = "");