Skip to content

Commit 2d63605

Browse files
committed
fix #12642 - GUI: statistics is not correct
1 parent e006e02 commit 2d63605

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gui/checkstatistics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static void addItem(QMap<QString,unsigned> &m, const QString &key)
3333
if (m.contains(key))
3434
m[key]++;
3535
else
36-
m[key] = 0;
36+
m[key] = 1;
3737
}
3838

3939
void CheckStatistics::addItem(const QString &tool, ShowTypes::ShowType type)

0 commit comments

Comments
 (0)