From ab19e5770f9f1c2a28dbccdb93c653a9fbc08b81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sun, 6 Oct 2024 13:14:33 +0200 Subject: [PATCH] Cosmetics --- src/style.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.cpp b/src/style.cpp index e82d524..79e01ba 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -49,7 +49,7 @@ Style::Layer::Filter::Filter(const QJsonArray &json) if (json.isEmpty()) INVALID_FILTER(json); - QString type = json.at(0).toString(); + QString type(json.at(0).toString()); if (type == "==") { if (json.size() != 3)