Fix compiler warning: don't mix signed and unsigned int in comparison
Change-Id: Ib6609d70900a0c26dd88bbfd16e886773ae67420 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>bb10
parent
784276cc72
commit
d40ba4adee
|
|
@ -640,7 +640,7 @@ void tst_QGlyphRun::defaultIgnorables()
|
||||||
QList<QGlyphRun> runs = layout.glyphRuns();
|
QList<QGlyphRun> runs = layout.glyphRuns();
|
||||||
QCOMPARE(runs.size(), 1);
|
QCOMPARE(runs.size(), 1);
|
||||||
QCOMPARE(runs.at(0).glyphIndexes().size(), 1);
|
QCOMPARE(runs.at(0).glyphIndexes().size(), 1);
|
||||||
QCOMPARE(runs.at(0).glyphIndexes()[0], 0);
|
QCOMPARE(runs.at(0).glyphIndexes()[0], uint(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // QT_NO_RAWFONT
|
#endif // QT_NO_RAWFONT
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue