diff options
| author | Luke Dashjr <[email protected]> | 2012-03-25 17:25:10 -0400 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-04-06 12:53:37 -0400 |
| commit | fa2544e79faf75923766624acd638e3cbdb9be0d (patch) | |
| tree | 7785ea719ba3c922f5f691b6a7e17bae57c2971c /src/qt/guiutil.h | |
| parent | Merge pull request #1033 from sipa/wait (diff) | |
| download | discoin-fa2544e79faf75923766624acd638e3cbdb9be0d.tar.xz discoin-fa2544e79faf75923766624acd638e3cbdb9be0d.zip | |
Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs
Diffstat (limited to 'src/qt/guiutil.h')
| -rw-r--r-- | src/qt/guiutil.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 06426d76b..3b5bc384a 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -29,10 +29,10 @@ public: static void setupAddressWidget(QLineEdit *widget, QWidget *parent); static void setupAmountWidget(QLineEdit *widget, QWidget *parent); - // 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(QString url, SendCoinsRecipient *out); + // Parse "bitcoin:" URI into recipient object, return true on succesful parsing + // See Bitcoin URI definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 + static bool parseBitcoinURI(const QUrl &, SendCoinsRecipient *out); + static bool parseBitcoinURI(QString uri, SendCoinsRecipient *out); // HTML escaping for rich text controls static QString HtmlEscape(const QString& str, bool fMultiLine=false); |