Skip to content

Commit

Permalink
change example address
Browse files Browse the repository at this point in the history
  • Loading branch information
DCTcoin committed Oct 14, 2015
1 parent c3059e6 commit 46ba70a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/qt/forms/sendcoinsentry.ui
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<item>
<widget class="QValidatedLineEdit" name="payTo">
<property name="toolTip">
<string>The address to send the payment to (e.g. RJhbfkAFvXqYkreSgJfrRLS9DepUcxbQci)</string>
<string>The address to send the payment to (e.g. DSYu84oJyL8jTbzN2j43iDPBD9w8dgycDs)</string>
</property>
<property name="maxLength">
<number>34</number>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/sendcoinsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ SendCoinsDialog::SendCoinsDialog(QWidget *parent) :

#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
ui->lineEditCoinControlChange->setPlaceholderText(tr("Enter a DiscountCoin address (e.g. D2su2kdywqn9f335JkiuWxmvRhmsddaKp6)"));
ui->lineEditCoinControlChange->setPlaceholderText(tr("Enter a DiscountCoin address (e.g. DSYu84oJyL8jTbzN2j43iDPBD9w8dgycDs)"));
#endif

addEntry();
Expand Down
2 changes: 1 addition & 1 deletion src/qt/sendcoinsentry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) :
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
ui->payTo->setPlaceholderText(tr("Enter a DiscountCoin address (e.g. D2su2kdywqn9f335JkiuWxmvRhmsddaKp6)"));
ui->payTo->setPlaceholderText(tr("Enter a DiscountCoin address (e.g. DSYu84oJyL8jTbzN2j43iDPBD9w8dgycDs)"));
#endif
setFocusPolicy(Qt::TabFocus);
setFocusProxy(ui->payTo);
Expand Down
4 changes: 2 additions & 2 deletions src/qt/signverifymessagedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ SignVerifyMessageDialog::SignVerifyMessageDialog(QWidget *parent) :

#if (QT_VERSION >= 0x040700)
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
ui->addressIn_SM->setPlaceholderText(tr("Enter a DiscountCoin address (e.g. D2su2kdywqn9f335JkiuWxmvRhmsddaKp6)"));
ui->addressIn_SM->setPlaceholderText(tr("Enter a DiscountCoin address (e.g. DSYu84oJyL8jTbzN2j43iDPBD9w8dgycDs)"));
ui->signatureOut_SM->setPlaceholderText(tr("Click \"Sign Message\" to generate signature"));

ui->addressIn_VM->setPlaceholderText(tr("Enter a DiscountCoin address (e.g. D2su2kdywqn9f335JkiuWxmvRhmsddaKp6)"));
ui->addressIn_VM->setPlaceholderText(tr("Enter a DiscountCoin address (e.g. DSYu84oJyL8jTbzN2j43iDPBD9w8dgycDs)"));
ui->signatureIn_VM->setPlaceholderText(tr("Enter DiscountCoin signature"));
#endif

Expand Down

0 comments on commit 46ba70a

Please sign in to comment.