From 0a8d1f9cd474928d5d358b3793a37f6d02b0a5d1 Mon Sep 17 00:00:00 2001 From: Volker Krause Date: Thu, 3 Aug 2017 21:57:44 +0200 Subject: [PATCH] Fix compilation on Yocto Summary: By default, Qt is built without accessibility there, which is what would indirectly include the needed QColor with a "normal" Qt build here. Reviewers: #frameworks, broulik Reviewed By: broulik Tags: #frameworks Differential Revision: https://phabricator.kde.org/D7117 --- src/declarativeimports/core/colorscope.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/declarativeimports/core/colorscope.cpp b/src/declarativeimports/core/colorscope.cpp index 8a705b8b3..2785fab93 100644 --- a/src/declarativeimports/core/colorscope.cpp +++ b/src/declarativeimports/core/colorscope.cpp @@ -23,6 +23,7 @@ #include #include +#include QHash ColorScope::s_attachedScopes = QHash();