Remove debug output

Accidentally committed in d8602ce58b6ef268be84b9aa0166b0c3fa6a96e8.

Change-Id: I553503720eace59a7bd510a7b9b2aba44c2242a1
Reviewed-by: Andy Shaw <andy.shaw@qt.io>
This commit is contained in:
Eskil Abrahamsen Blomfeldt 2021-01-20 08:23:01 +01:00
parent 9ff448b6db
commit d939faeaae
2 changed files with 0 additions and 3 deletions

View File

@ -1674,7 +1674,6 @@ QFont QFontDatabase::font(const QString &family, const QString &style,
{
QString familyName, foundryName;
parseFontName(family, foundryName, familyName);
qDebug() << family << style << familyName << foundryName;
QMutexLocker locker(fontDatabaseMutex());
QFontDatabasePrivate *d = QFontDatabasePrivate::ensureFontDatabase();

View File

@ -628,8 +628,6 @@ static int QT_WIN_CALLBACK storeFont(const LOGFONT *logFont, const TEXTMETRIC *t
{
const ENUMLOGFONTEX *f = reinterpret_cast<const ENUMLOGFONTEX *>(logFont);
const QString familyName = QString::fromWCharArray(f->elfLogFont.lfFaceName);
if (familyName == QLatin1String("Lucida Calligraphy"))
qDebug("BP");
const QString styleName = QString::fromWCharArray(f->elfStyle);
// NEWTEXTMETRICEX (passed for TT fonts) is a NEWTEXTMETRIC, which according