Browse Source

Merge pull request #1251 from Diapolo/transactionview_comments

add 2 comments to transactionview.cpp to ensure no one moves setPlacehol...
0.8
Wladimir J. van der Laan 13 years ago
parent
commit
a8fef7f569
  1. 2
      src/qt/transactionview.cpp

2
src/qt/transactionview.cpp

@ -81,12 +81,14 @@ TransactionView::TransactionView(QWidget *parent) : @@ -81,12 +81,14 @@ TransactionView::TransactionView(QWidget *parent) :
addressWidget = new QLineEdit(this);
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
addressWidget->setPlaceholderText(tr("Enter address or label to search"));
#endif
hlayout->addWidget(addressWidget);
amountWidget = new QLineEdit(this);
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
amountWidget->setPlaceholderText(tr("Min amount"));
#endif
#ifdef Q_WS_MAC

Loading…
Cancel
Save