Fix -no-freetype build on Windows

Just a missing #ifdef.

Pick-to: 6.2 6.3
Fixes: QTBUG-103370
Change-Id: I4fc4605317d423acbf6280307362a087e427761b
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
This commit is contained in:
Eskil Abrahamsen Blomfeldt 2022-05-11 08:46:02 +02:00
parent a73fdd1555
commit 03782af2dd

View File

@ -38,7 +38,9 @@
****************************************************************************/
#include "qwindowsfontdatabase_p.h"
#include "qwindowsfontdatabase_ft_p.h" // for default font
#ifndef QT_NO_FREETYPE
# include "qwindowsfontdatabase_ft_p.h" // for default font
#endif
#include "qwindowsfontengine_p.h"
#include <QtCore/qt_windows.h>