summaryrefslogtreecommitdiffstats
path: root/src/openvg/qpaintengine_vg.cpp
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-10-30 17:04:28 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-10-30 17:04:28 (GMT)
commitf9d30be978f5f7f0ebf0b240064268037f01ebd5 (patch)
treeb625b04cbf52e4e5b4b69c153ec1c541ab89de1f /src/openvg/qpaintengine_vg.cpp
parent349b6c734aa7af85f3709312325c3b2e9abdad2b (diff)
parent3bee0c34590e6696d4477835aaa883e930903109 (diff)
downloadQt-f9d30be978f5f7f0ebf0b240064268037f01ebd5.zip
Qt-f9d30be978f5f7f0ebf0b240064268037f01ebd5.tar.gz
Qt-f9d30be978f5f7f0ebf0b240064268037f01ebd5.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: 32bit => 16bit conversion has 4byte-aligned output. Fix gcc bug in qReallocAligned Prevented threading related crash in OpenGL module. Fix possible crash in QStaticText and QDeclarativeTextLayout Fix QTBUG-14132 oracle (xe) stored procedures with bind variables get errors
Diffstat (limited to 'src/openvg/qpaintengine_vg.cpp')
-rw-r--r--src/openvg/qpaintengine_vg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvg/qpaintengine_vg.cpp b/src/openvg/qpaintengine_vg.cpp
index 9df32d9..8405ead 100644
--- a/src/openvg/qpaintengine_vg.cpp
+++ b/src/openvg/qpaintengine_vg.cpp
@@ -3475,7 +3475,7 @@ void QVGPaintEngine::drawTextItem(const QPointF &p, const QTextItem &textItem)
void QVGPaintEngine::drawStaticTextItem(QStaticTextItem *textItem)
{
- drawCachedGlyphs(textItem->numGlyphs, textItem->glyphs, textItem->font, textItem->fontEngine,
+ drawCachedGlyphs(textItem->numGlyphs, textItem->glyphs, textItem->font, textItem->fontEngine(),
QPointF(0, 0), textItem->glyphPositions);
}