Skip to content

Commit

Permalink
MER: Fix compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjones committed Oct 3, 2016
1 parent b4ada3f commit 103e7b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/text/qfontengine_ft.cpp
Expand Up @@ -1790,7 +1790,7 @@ void QFontEngineFT::unlockAlphaMapForGlyph()
static inline bool is2dRotation(const QTransform &t)
{
return qFuzzyCompare(t.m11(), t.m22()) && qFuzzyCompare(t.m12(), -t.m21())
&& qFuzzyCompare(t.m11()*t.m22() - t.m12()*t.m21(), 1.0);
&& qFuzzyCompare(t.m11()*t.m22() - t.m12()*t.m21(), qreal(1.0));
}

QFontEngineFT::Glyph *QFontEngineFT::loadGlyphFor(glyph_t g,
Expand Down

0 comments on commit 103e7b1

Please sign in to comment.