GUI: Fix saving new error categories names.

This commit is contained in:
Kimmo Varis 2010-10-28 19:59:03 +03:00
parent 9435fde551
commit 3ad4067262
1 changed files with 8 additions and 0 deletions

View File

@ -719,6 +719,14 @@ QString ResultsTree::ShowTypeToString(ShowTypes type)
return tr("error");
break;
case SHOW_WARNINGS:
return tr("warning");
break;
case SHOW_PERFORMANCE:
return tr("performance");
break;
case SHOW_NONE:
return "";
break;