summaryrefslogtreecommitdiffstats
path: root/src/gui/text
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2022-10-19 10:47:12 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2022-10-19 13:44:47 +0200
commit87f8159c6a230e3ec1b8a628a20b04cc308d9fcf (patch)
tree5c07d657a5d41669a641cc673af5b0e80b931eab /src/gui/text
parentbbad6440aecdba29d8808c4fa6e3e6353b39c887 (diff)
QCoreTextFontEngine: Mark CGAffineTransformConcat as unused
We don't know at this point why the result isn't assigned back to cgMatrix, but for now mark it as unused to fix warnings-are-errors builds. Pick-to: 6.2 6.4 5.15 Change-Id: I6b32bbc42b2147b5304e1c72026e39d3e1eb8a4d Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
Diffstat (limited to 'src/gui/text')
-rw-r--r--src/gui/text/coretext/qfontengine_coretext.mm3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/text/coretext/qfontengine_coretext.mm b/src/gui/text/coretext/qfontengine_coretext.mm
index e455620787..32f7ed2094 100644
--- a/src/gui/text/coretext/qfontengine_coretext.mm
+++ b/src/gui/text/coretext/qfontengine_coretext.mm
@@ -378,7 +378,8 @@ void QCoreTextFontEngine::draw(CGContextRef ctx, qreal x, qreal y, const QTextIt
CGAffineTransform cgMatrix = CGAffineTransformMake(1, 0, 0, -1, 0, -paintDeviceHeight);
- CGAffineTransformConcat(cgMatrix, oldTextMatrix);
+ // FIXME: Should we include the old matrix here? If so we need to assign it.
+ Q_UNUSED(CGAffineTransformConcat(cgMatrix, oldTextMatrix));
if (synthesisFlags & QFontEngine::SynthesizedItalic)
cgMatrix = CGAffineTransformConcat(cgMatrix, CGAffineTransformMake(1, 0, -SYNTHETIC_ITALIC_SKEW, 1, 0, 0));