Merge pull request #70 from kimmov/gui-filter-fix

GUI: Fix bug in severity filtering.
This commit is contained in:
Daniel Marjamäki 2011-12-27 08:10:37 -08:00
commit 996a109b14
1 changed files with 2 additions and 2 deletions

View File

@ -47,9 +47,9 @@ ShowTypes::ShowType ShowTypes::SeverityToShowType(Severity::SeverityType severit
case Severity::portability:
return ShowTypes::ShowPortability;
case Severity::information:
return ShowTypes::ShowPortability;
return ShowTypes::ShowInformation;
default:
return ShowTypes::ShowPortability;
return ShowTypes::ShowNone;
}
return ShowTypes::ShowNone;