diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-01-26 19:00:02 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-01-26 19:00:02 +0100 |
commit | 70f55355e29c8e45b607e782c5d76609d23cc858 (patch) | |
tree | 3013bee1a1b7dde5b9dfc72508c2716122e84b5d /src/qt/bitcoingui.cpp | |
parent | 4c932cca6f579bfb11e0144415c3004d382b8e42 (diff) | |
parent | 7d145a0f591dab109eae9adcfaf59303cce0431a (diff) |
Merge pull request #593 (Full URL Support in bitcoin-qt)
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index d77279d42b..f9f92f0f01 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -670,6 +670,13 @@ void BitcoinGUI::dropEvent(QDropEvent *event) event->acceptProposedAction(); } +void BitcoinGUI::handleURL(QString strURL) +{ + gotoSendCoinsPage(); + QUrl url = QUrl(strURL); + sendCoinsPage->handleURL(&url); +} + void BitcoinGUI::setEncryptionStatus(int status) { switch(status) |