diff options
Diffstat (limited to 'src/gui/text/qfontengine.cpp')
-rw-r--r-- | src/gui/text/qfontengine.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/text/qfontengine.cpp b/src/gui/text/qfontengine.cpp index b931de1945e..d3c8c1a840b 100644 --- a/src/gui/text/qfontengine.cpp +++ b/src/gui/text/qfontengine.cpp @@ -103,12 +103,12 @@ bool qt_useHarfbuzzNG() int QFontEngine::getPointInOutline(glyph_t glyph, int flags, quint32 point, QFixed *xpos, QFixed *ypos, quint32 *nPoints) { - Q_UNUSED(glyph) - Q_UNUSED(flags) - Q_UNUSED(point) - Q_UNUSED(xpos) - Q_UNUSED(ypos) - Q_UNUSED(nPoints) + Q_UNUSED(glyph); + Q_UNUSED(flags); + Q_UNUSED(point); + Q_UNUSED(xpos); + Q_UNUSED(ypos); + Q_UNUSED(nPoints); return Err_Not_Covered; } @@ -954,9 +954,9 @@ void QFontEngine::getUnscaledGlyph(glyph_t glyph, QPainterPath *path, glyph_metr */ bool QFontEngine::getSfntTableData(uint tag, uchar *buffer, uint *length) const { - Q_UNUSED(tag) - Q_UNUSED(buffer) - Q_UNUSED(length) + Q_UNUSED(tag); + Q_UNUSED(buffer); + Q_UNUSED(length); return false; } @@ -1538,7 +1538,7 @@ QFontEngineBox::~QFontEngineBox() glyph_t QFontEngineBox::glyphIndex(uint ucs4) const { - Q_UNUSED(ucs4) + Q_UNUSED(ucs4); return 0; } |