Removed non-existent type

This commit is contained in:
Martin Tůma 2018-10-31 21:57:42 +01:00
parent df40c06afc
commit adcc257f53
2 changed files with 0 additions and 3 deletions

View File

@ -332,8 +332,6 @@ Style::Layer::Layer(const QJsonObject &json)
_type = Line; _type = Line;
else if (type == "background") else if (type == "background")
_type = Background; _type = Background;
else if (type == "vector")
_type = Vector;
else if (type == "symbol") else if (type == "symbol")
_type = Symbol; _type = Symbol;

View File

@ -49,7 +49,6 @@ private:
Fill, Fill,
Line, Line,
Background, Background,
Vector,
Symbol Symbol
}; };