aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletstack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/walletstack.cpp')
-rw-r--r--src/qt/walletstack.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/walletstack.cpp b/src/qt/walletstack.cpp
index 9e3060e86b..6cc73358a4 100644
--- a/src/qt/walletstack.cpp
+++ b/src/qt/walletstack.cpp
@@ -54,12 +54,12 @@ void WalletStack::removeAllWallets()
mapWalletViews.clear();
}
-bool WalletStack::handleURI(const QString &uri)
+bool WalletStack::handlePaymentRequest(const SendCoinsRecipient &recipient)
{
WalletView *walletView = (WalletView*)currentWidget();
if (!walletView) return false;
- return walletView->handleURI(uri);
+ return walletView->handlePaymentRequest(recipient);
}
void WalletStack::showOutOfSyncWarning(bool fShow)