Backport GuiFontLoader deprecation warning fixes

This commit is contained in:
Juergen Spitzmueller 2021-03-13 12:04:58 +01:00
parent aad8804549
commit 85ece5fb3d

View File

@ -226,6 +226,7 @@ QFont symbolFont(QString const & family, bool * ok)
return font; return font;
} }
#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
// A simple setFamily() fails on Qt 2 // A simple setFamily() fails on Qt 2
QString const raw = rawName(family); QString const raw = rawName(family);
@ -237,6 +238,7 @@ QFont symbolFont(QString const & family, bool * ok)
*ok = true; *ok = true;
return font; return font;
} }
#endif
LYXERR_NOPOS(Debug::FONT, " FAILED :-("); LYXERR_NOPOS(Debug::FONT, " FAILED :-(");
*ok = false; *ok = false;
@ -370,7 +372,9 @@ QFont makeQFont(FontInfo const & f)
else else
LYXERR(Debug::FONT, "This font is NOT an exact match"); LYXERR(Debug::FONT, "This font is NOT an exact match");
#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
LYXERR(Debug::FONT, "XFLD: " << font.rawName()); LYXERR(Debug::FONT, "XFLD: " << font.rawName());
#endif
font.setPointSizeF(f.realSize() * lyxrc.currentZoom / 100.0); font.setPointSizeF(f.realSize() * lyxrc.currentZoom / 100.0);