Add missing include. Fixes building on Visual Studio 2022.

This commit is contained in:
Julian Groß 2025-03-20 00:23:03 +01:00
parent d071d0d635
commit 72c1d30103

View file

@ -6,7 +6,7 @@
// Created by Andrzej Kapolka on 5/10/13. // Created by Andrzej Kapolka on 5/10/13.
// Copyright 2013 High Fidelity, Inc. // Copyright 2013 High Fidelity, Inc.
// Copyright 2020 Vircadia contributors. // Copyright 2020 Vircadia contributors.
// Copyright 2022-2023 Overte e.V. // Copyright 2022-2025 Overte e.V.
// //
// Distributed under the Apache License, Version 2.0. // Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
@ -18,6 +18,9 @@
#include <QtQml/QQmlContext> #include <QtQml/QQmlContext>
#include <QStyle> #include <QStyle>
#include <QStyleFactory> #include <QStyleFactory>
#if defined(Q_OS_WIN)
#include <windows.h>
#endif
#include <AddressManager.h> #include <AddressManager.h>
#include <AnimationCacheScriptingInterface.h> #include <AnimationCacheScriptingInterface.h>