diff options
author | Alessandro Portale <aportale@trolltech.com> | 2009-08-21 21:41:02 (GMT) |
---|---|---|
committer | Alessandro Portale <aportale@trolltech.com> | 2009-08-21 21:41:02 (GMT) |
commit | bab60c1b5c2bf8a32eb8e2be2470e28559c4b24a (patch) | |
tree | ea9e70832c1635d82e2902385c20133418d9d79d /src/gui | |
parent | 3d88105f5a5ed97d8eb3250e9a481f74ce695719 (diff) | |
download | Qt-bab60c1b5c2bf8a32eb8e2be2470e28559c4b24a.zip Qt-bab60c1b5c2bf8a32eb8e2be2470e28559c4b24a.tar.gz Qt-bab60c1b5c2bf8a32eb8e2be2470e28559c4b24a.tar.bz2 |
Warning fix: mask_format = unreferenced parameter
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/text/qfontengine_win.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/text/qfontengine_win.cpp b/src/gui/text/qfontengine_win.cpp index 25cc4da..173b822 100644 --- a/src/gui/text/qfontengine_win.cpp +++ b/src/gui/text/qfontengine_win.cpp @@ -1098,6 +1098,7 @@ extern bool qt_cleartype_enabled; QNativeImage *QFontEngineWin::drawGDIGlyph(HFONT font, glyph_t glyph, int margin, const QTransform &t, QImage::Format mask_format) { + Q_UNUSED(mask_format) glyph_metrics_t gm = boundingBox(glyph); // printf(" -> for glyph %4x\n", glyph); |