diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-02-17 15:26:20 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-02-17 15:32:51 +0100 |
| commit | 23b3cf9d10b8e999c46238631239005f2367a5f9 (patch) | |
| tree | 80108137c3922024f5f7779ae5436ada4b803a23 /src/qt/guiutil.h | |
| parent | don't allow -daemon in bitcoin-qt (changes only #defines) (diff) | |
| download | discoin-23b3cf9d10b8e999c46238631239005f2367a5f9.tar.xz discoin-23b3cf9d10b8e999c46238631239005f2367a5f9.zip | |
Restructure IPC URL handling (fixes #851)
Diffstat (limited to 'src/qt/guiutil.h')
| -rw-r--r-- | src/qt/guiutil.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 3a81bd2f0..0c8b17186 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -31,7 +31,8 @@ public: // Parse "bitcoin:" URL into recipient object, return true on succesful parsing // See Bitcoin URL definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 - static bool parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out); + static bool parseBitcoinURL(const QUrl &url, SendCoinsRecipient *out); + static bool parseBitcoinURL(QString url, SendCoinsRecipient *out); // HTML escaping for rich text controls static QString HtmlEscape(const QString& str, bool fMultiLine=false); |