From abf11f79ae2a9767778b36a2f9e0c4bc97624602 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 1 Apr 2013 14:43:50 +0200 Subject: 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() --- src/qt/walletstack.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qt/walletstack.cpp') diff --git a/src/qt/walletstack.cpp b/src/qt/walletstack.cpp index 271d1c792..42d86956b 100644 --- a/src/qt/walletstack.cpp +++ b/src/qt/walletstack.cpp @@ -97,11 +97,11 @@ void WalletStack::gotoReceiveCoinsPage() i.value()->gotoReceiveCoinsPage(); } -void WalletStack::gotoSendCoinsPage() +void WalletStack::gotoSendCoinsPage(QString addr) { QMap::const_iterator i; for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i) - i.value()->gotoSendCoinsPage(); + i.value()->gotoSendCoinsPage(addr); } void WalletStack::gotoSignMessageTab(QString addr) -- cgit v1.2.3