X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fqt%2Fguiutil.h;h=7e2b006d929aa8ffa4560015120eec1ff076c276;hb=892fcaf291cb9fc0f9efd4244f01b6b6529409ba;hp=a7eee0990b2c681b95e0a68549170be07e1f536f;hpb=0d10cb7a1f6314760ef8895490e5c1042c3549b1;p=novacoin.git diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index a7eee09..7e2b006 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -28,10 +28,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); /** Get save file name, mimics QFileDialog::getSaveFileName, except that it appends a default suffix when no suffix is provided by the user.