diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-11-06 15:08:56 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-11-11 14:29:49 +0100 |
commit | 4c6035860448656c67fa60fef6b020aafbb2e208 (patch) | |
tree | d293e815b23f69b3f9555840af61ddf1d6c8fe79 /src/qt/paymentserver.h | |
parent | 3a8915d9a85b37f6c58a512fc11457eaa3d3570e (diff) |
qt: add Open URI dialog
Diffstat (limited to 'src/qt/paymentserver.h')
-rw-r--r-- | src/qt/paymentserver.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qt/paymentserver.h b/src/qt/paymentserver.h index 65bf034354..febcbad628 100644 --- a/src/qt/paymentserver.h +++ b/src/qt/paymentserver.h @@ -105,6 +105,9 @@ public slots: // Submit Payment message to a merchant, get back PaymentACK: void fetchPaymentACK(CWallet* wallet, SendCoinsRecipient recipient, QByteArray transaction); + // Handle an incoming URI or file + void handleURIOrFile(const QString& s); + private slots: void handleURIConnection(); void netRequestFinished(QNetworkReply*); @@ -114,7 +117,6 @@ private slots: private: static bool readPaymentRequest(const QString& filename, PaymentRequestPlus& request); bool processPaymentRequest(PaymentRequestPlus& request, SendCoinsRecipient& recipient); - void handleURIOrFile(const QString& s); void fetchRequest(const QUrl& url); bool saveURIs; // true during startup |