style fixes mostly

This commit is contained in:
LianaHus
2015-10-15 16:08:02 +02:00
parent cd6262998c
commit 68e126dc7d
4 changed files with 42 additions and 18 deletions
+2 -2
View File
@@ -60,7 +60,7 @@ public:
{
for (auto e: _list)
{
if(e->type() == _type)
if (e->type() == _type)
return e.get();
}
return nullptr;
@@ -69,7 +69,7 @@ public:
{
for (auto e: _list)
{
if(e->type() != Type::Warning)
if (e->type() != Type::Warning)
return false;
}
return true;