diff options
| author | Tom Harding <[email protected]> | 2014-06-27 16:47:33 -0700 |
|---|---|---|
| committer | Tom Harding <[email protected]> | 2014-06-27 16:47:33 -0700 |
| commit | 7a19efe04069d9a1e251cdc94b25184f76d9d901 (patch) | |
| tree | 9852770f0275fa00ce7510b8b77b745e611f9b3f /src/qt/transactiontablemodel.cpp | |
| parent | Add release notes entry (diff) | |
| download | discoin-7a19efe04069d9a1e251cdc94b25184f76d9d901.tar.xz discoin-7a19efe04069d9a1e251cdc94b25184f76d9d901.zip | |
Formatting, spelling, comment fixes.
Diffstat (limited to 'src/qt/transactiontablemodel.cpp')
| -rw-r--r-- | src/qt/transactiontablemodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index eb5c3abdb..d7f4c043c 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -538,9 +538,9 @@ QVariant TransactionTableModel::data(const QModelIndex &index, int role) const case Qt::TextAlignmentRole: return column_alignments[index.column()]; case Qt::BackgroundColorRole: - if (rec->status.hasConflicting) + if (rec->status.hasConflicting) return COLOR_HASCONFLICTING_BG; - break; + break; case Qt::ForegroundRole: if (rec->status.hasConflicting) return COLOR_HASCONFLICTING; |