Fix ticket #456 (GUI:: save only the results selected in view settings)
http://sourceforge.net/apps/trac/cppcheck/ticket/456
This commit is contained in:
parent
6e378615cf
commit
81ab6a75c3
|
@ -547,6 +547,7 @@ void ResultsTree::SaveResults(Report *report)
|
||||||
for (int i = 0; i < mModel.rowCount(); i++)
|
for (int i = 0; i < mModel.rowCount(); i++)
|
||||||
{
|
{
|
||||||
QStandardItem *item = mModel.item(i, 0);
|
QStandardItem *item = mModel.item(i, 0);
|
||||||
|
if (!isRowHidden(i, item->index()))
|
||||||
SaveErrors(report, item);
|
SaveErrors(report, item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue