Fix a compil warning.

This commit is contained in:
jean-pierre charras 2020-12-15 16:20:58 +01:00
parent 5e394836d2
commit 00255f2a9c
1 changed files with 6 additions and 0 deletions

View File

@ -331,6 +331,12 @@ void RC_TREE_MODEL::GetValue( wxVariant& aVariant,
{
case RPT_SEVERITY_ERROR: prefix += _( "Error: " ); break;
case RPT_SEVERITY_WARNING: prefix += _( "Warning: " ); break;
case RPT_SEVERITY_UNDEFINED:
case RPT_SEVERITY_INFO:
case RPT_SEVERITY_ACTION:
case RPT_SEVERITY_IGNORE:
break;
}
aVariant = prefix + rcItem->GetErrorMessage();