From 2c0316f07dc0729025a62712b467d6b40423d15a Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sun, 15 Feb 2015 12:57:28 +0300 Subject: [PATCH] always use fontconfig --- src/qphantom/phantomintegration.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qphantom/phantomintegration.cpp b/src/qphantom/phantomintegration.cpp index a56d3da1..385f6bbf 100644 --- a/src/qphantom/phantomintegration.cpp +++ b/src/qphantom/phantomintegration.cpp @@ -47,7 +47,7 @@ #if defined(Q_OS_MAC) # include #else -# include +# include #endif #include @@ -103,7 +103,7 @@ QPlatformFontDatabase *PhantomIntegration::fontDatabase() const #if defined(Q_OS_MAC) db = new QCoreTextFontDatabase(); #else - db = new QGenericUnixFontDatabase(); + db = new QFontconfigDatabase(); #endif } return db;