mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:35:31 +00:00
Fix a compil warning.
This commit is contained in:
parent
5e394836d2
commit
00255f2a9c
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user