diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-11 02:43:42 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-11 02:43:42 -0700 |
| commit | a8fef7f5698ccd5a582b29b7baa956739d287ee2 (patch) | |
| tree | 3cd1ee1efc65eeb9be6958f2ffbbfadadd05b8ad /src/qt/transactionview.cpp | |
| parent | Merge pull request #1257 from Diapolo/fix_guiutil_warn (diff) | |
| parent | add 2 comments to transactionview.cpp to ensure no one moves setPlaceholderTe... (diff) | |
| download | discoin-a8fef7f5698ccd5a582b29b7baa956739d287ee2.tar.xz discoin-a8fef7f5698ccd5a582b29b7baa956739d287ee2.zip | |
Merge pull request #1251 from Diapolo/transactionview_comments
add 2 comments to transactionview.cpp to ensure no one moves setPlacehol...
Diffstat (limited to 'src/qt/transactionview.cpp')
| -rw-r--r-- | src/qt/transactionview.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 25d72b274..1c427d6fe 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -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 |