aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-01-28 10:54:12 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-01-28 10:54:17 +0100
commitf9355f1f2bfb1263f5e739fb7eb149a4ba926d36 (patch)
treecce91a15e37bbd5c75d5886064df726662654bdb /src
parentdfd0d38faef92e8a0af88b56c3020a7324c13d96 (diff)
parentd7aa1ec8dd1edd6ba35bddbecc22426a6179a729 (diff)
downloadbitcoin-f9355f1f2bfb1263f5e739fb7eb149a4ba926d36.tar.xz
Merge pull request #3594
d7aa1ec [Qt] fix bitcoin: URI strings (spelling fixes) (Philip Kaufmann)
Diffstat (limited to 'src')
-rw-r--r--src/qt/forms/sendcoinsentry.ui2
-rw-r--r--src/qt/guiutil.cpp2
-rw-r--r--src/qt/recentrequeststablemodel.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui
index 76039ce52a..e77de0d9b8 100644
--- a/src/qt/forms/sendcoinsentry.ui
+++ b/src/qt/forms/sendcoinsentry.ui
@@ -154,7 +154,7 @@
<item row="3" column="1">
<widget class="QLabel" name="messageTextLabel">
<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 name="textFormat">
<enum>Qt::PlainText</enum>
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp
index a69ea28fdf..5c3ba05b06 100644
--- a/src/qt/guiutil.cpp
+++ b/src/qt/guiutil.cpp
@@ -90,7 +90,7 @@ void setupAmountWidget(QLineEdit *widget, QWidget *parent)
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"))
return false;
diff --git a/src/qt/recentrequeststablemodel.h b/src/qt/recentrequeststablemodel.h
index 51aef9decf..6fed208345 100644
--- a/src/qt/recentrequeststablemodel.h
+++ b/src/qt/recentrequeststablemodel.h
@@ -53,7 +53,7 @@ private:
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.
*/
class RecentRequestsTableModel: public QAbstractTableModel