diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-06-18 11:53:25 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-06-18 11:53:25 +0200 |
| commit | 0f3981bea94cea957f0de4b128f7feffbfc2d9c6 (patch) | |
| tree | 28b8fa9cf6dfdbf9b2f1358c35327264adfe200d /src/qt/bitcoingui.cpp | |
| parent | fix issue #3 (dark theme compat) (diff) | |
| download | discoin-0f3981bea94cea957f0de4b128f7feffbfc2d9c6.tar.xz discoin-0f3981bea94cea957f0de4b128f7feffbfc2d9c6.zip | |
remove commented code, use // for one-line comments and comments inside functions
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 4e9a02135..4d3efe26d 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -429,7 +429,7 @@ void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee) void BitcoinGUI::transactionDetails(const QModelIndex& idx) { - /* A transaction is doubleclicked */ + // A transaction is doubleclicked TransactionDescDialog dlg(idx); dlg.exec(); } @@ -443,7 +443,7 @@ void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int .data(Qt::EditRole).toULongLong(); if((credit+debit)>0) { - /* On incoming transaction, make an info balloon */ + // On incoming transaction, make an info balloon QString date = ttm->index(start, TransactionTableModel::Date, parent) .data().toString(); QString description = ttm->index(start, TransactionTableModel::Description, parent) |