fixed documentation

This commit is contained in:
john30
2014-12-15 20:13:20 +01:00
parent b13e597602
commit 4e81fd842b
18 changed files with 181 additions and 139 deletions
+3 -4
View File
@@ -59,14 +59,13 @@ int calcAreaMask(const string areas)
return mask;
}
int calcLevel(const string level)
LevelType calcLevel(const string level)
{
int m_level = event;
for (int i = 0; i < Size_of_Level; i++)
if (strcasecmp(LevelNames[i], level.c_str()) == 0)
return i;
return (LevelType)i;
return m_level;
return event;
}