Fixed recent regression in GUI: multiple messages with same Id in the same line weren't shown

This commit is contained in:
PKEuS 2012-12-07 04:35:14 -08:00
parent 2a1ca20795
commit 1f87961c16
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ QStandardItem *ResultsTree::AddBacktraceFiles(QStandardItem *parent,
// the second column is the severity so check it next
if (parent->child(i, 1)->text() == list[1]->text()) {
// the fourth column is the summary so check it last
if (parent->child(i, 3)->text() == list[3]->text()) {
if (parent->child(i, 4)->text() == list[4]->text()) {
// this row matches so don't add it
return 0;
}