[Qt] fix bitcoin: URI strings (spelling fixes)
This commit is contained in:
parent
ca1913e8f6
commit
d7aa1ec8dd
3 changed files with 3 additions and 3 deletions
|
@ -154,7 +154,7 @@
|
||||||
<item row="3" column="1">
|
<item row="3" column="1">
|
||||||
<widget class="QLabel" name="messageTextLabel">
|
<widget class="QLabel" name="messageTextLabel">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>A message that was attached to the Bitcoin URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.</string>
|
<string>A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="textFormat">
|
<property name="textFormat">
|
||||||
<enum>Qt::PlainText</enum>
|
<enum>Qt::PlainText</enum>
|
||||||
|
|
|
@ -90,7 +90,7 @@ void setupAmountWidget(QLineEdit *widget, QWidget *parent)
|
||||||
|
|
||||||
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
|
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
|
||||||
{
|
{
|
||||||
// return if URI is not valid or is no bitcoin URI
|
// return if URI is not valid or is no bitcoin: URI
|
||||||
if(!uri.isValid() || uri.scheme() != QString("bitcoin"))
|
if(!uri.isValid() || uri.scheme() != QString("bitcoin"))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ private:
|
||||||
Qt::SortOrder order;
|
Qt::SortOrder order;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Model for list of recently generated payment requests / bitcoin URIs.
|
/** Model for list of recently generated payment requests / bitcoin: URIs.
|
||||||
* Part of wallet model.
|
* Part of wallet model.
|
||||||
*/
|
*/
|
||||||
class RecentRequestsTableModel: public QAbstractTableModel
|
class RecentRequestsTableModel: public QAbstractTableModel
|
||||||
|
|
Loading…
Reference in a new issue