bool SendCoinsDialog::handlePaymentRequest(const SendCoinsRecipient &rv) { // Just paste the entry, all pre-checks // are done in paymentserver.cpp. pasteEntry(rv); return true; }
void CreateProposalDialog::handleURI(const QString &uri) { SendCoinsRecipient rv; if (!GUIUtil::parseBitcoinURI(uri, &rv)) { return; } pasteEntry(rv); }