aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2020-08-29 11:43:11 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2020-08-31 09:00:25 +0200
commitcf6bbc0d65fed17c645d7a3b62d2676fec5b251c (patch)
tree8cd1cd31cba6a8e434a8916c5c6106a61f0b26c0 /src/quick/scenegraph
parent23ee017bb10e1f8b9d557f0b864f3aa2e5d8c23b (diff)
Fix format specifier error after sizetype change
Change-Id: I8cf053270a7d2c17cb3c4313ff129610aeded59a Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
Diffstat (limited to 'src/quick/scenegraph')
-rw-r--r--src/quick/scenegraph/qsgrhidistancefieldglyphcache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/scenegraph/qsgrhidistancefieldglyphcache.cpp b/src/quick/scenegraph/qsgrhidistancefieldglyphcache.cpp
index ae6d41076f..a715092b19 100644
--- a/src/quick/scenegraph/qsgrhidistancefieldglyphcache.cpp
+++ b/src/quick/scenegraph/qsgrhidistancefieldglyphcache.cpp
@@ -538,8 +538,8 @@ bool QSGRhiDistanceFieldGlyphCache::loadPregeneratedCache(const QRawFont &font)
quint64 now = timer.elapsed();
qCDebug(QSG_LOG_TIME_GLYPH,
"distancefield: %d pre-generated glyphs loaded in %dms",
- m_unusedGlyphs.size(),
- (int) now);
+ int(m_unusedGlyphs.size()),
+ int(now));
}
return true;