Browse Source

Merge pull request #1194 from Diapolo/sendcoins_placeholdertext

move label placeholdertext from sendcoinsentry.cpp to ui-file
0.8
Wladimir J. van der Laan 12 years ago
parent
commit
393a0edc51
  1. 6
      src/qt/forms/sendcoinsentry.ui
  2. 4
      src/qt/sendcoinsentry.cpp

6
src/qt/forms/sendcoinsentry.ui

@ -65,6 +65,9 @@ @@ -65,6 +65,9 @@
<property name="toolTip">
<string>Enter a label for this address to add it to your address book</string>
</property>
<property name="placeholderText">
<string>Enter a label for this address to add it to your address book</string>
</property>
</widget>
</item>
</layout>
@ -95,6 +98,9 @@ @@ -95,6 +98,9 @@
<property name="maxLength">
<number>34</number>
</property>
<property name="placeholderText">
<string>Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)</string>
</property>
</widget>
</item>
<item>

4
src/qt/sendcoinsentry.cpp

@ -21,10 +21,6 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) : @@ -21,10 +21,6 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) :
ui->payToLayout->setSpacing(4);
#endif
#if QT_VERSION >= 0x040700
ui->payTo->setPlaceholderText(tr("Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)"));
ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
#endif
setFocusPolicy(Qt::TabFocus);
setFocusProxy(ui->payTo);

Loading…
Cancel
Save