diff options
author | Tom Harding <tomh@thinlink.com> | 2014-06-27 16:47:33 -0700 |
---|---|---|
committer | Tom Harding <tomh@thinlink.com> | 2014-06-27 16:47:33 -0700 |
commit | 7a19efe04069d9a1e251cdc94b25184f76d9d901 (patch) | |
tree | 9852770f0275fa00ce7510b8b77b745e611f9b3f /src/qt/transactiontablemodel.cpp | |
parent | 9fa53dd3bdc6f62b16a7c2b970449c8c35f4c41b (diff) |
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 eb5c3abdbc..d7f4c043cf 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; |