diff options
author | Sami Merila <sami.merila@nokia.com> | 2011-05-12 07:27:03 (GMT) |
---|---|---|
committer | Samuel Rødal <samuel.rodal@nokia.com> | 2011-05-31 08:18:21 (GMT) |
commit | 750071097f55be38dbdca1ed77064c8ed1a64f9e (patch) | |
tree | d0cd63ba579a92a8b54c96570e5caf427ec1d917 /src/opengl | |
parent | 322c96eb9564f930a63be820c22b053630663880 (diff) | |
download | Qt-750071097f55be38dbdca1ed77064c8ed1a64f9e.zip Qt-750071097f55be38dbdca1ed77064c8ed1a64f9e.tar.gz Qt-750071097f55be38dbdca1ed77064c8ed1a64f9e.tar.bz2 |
Symbian build failure for Armv5
1. Changed externs to Q_GUI_EXPORTs
2. ABSENTed missing exports from openGL's DEF-file
Reviewed-by: Tomi Vihria
Diffstat (limited to 'src/opengl')
-rw-r--r-- | src/opengl/qpaintengine_opengl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opengl/qpaintengine_opengl.cpp b/src/opengl/qpaintengine_opengl.cpp index 5fa9f32..58ce6f8 100644 --- a/src/opengl/qpaintengine_opengl.cpp +++ b/src/opengl/qpaintengine_opengl.cpp @@ -2119,7 +2119,7 @@ void QOpenGLPaintEnginePrivate::fillPath(const QPainterPath &path) updateGLMatrix(); } -extern bool qt_isExtendedRadialGradient(const QBrush &brush); +Q_GUI_EXPORT bool qt_isExtendedRadialGradient(const QBrush &brush); static inline bool needsEmulation(Qt::BrushStyle style) { @@ -5450,7 +5450,7 @@ void QOpenGLPaintEngine::transformChanged() updateMatrix(state()->matrix); } -extern QPainterPath qt_painterPathFromVectorPath(const QVectorPath &path); +Q_GUI_EXPORT QPainterPath qt_painterPathFromVectorPath(const QVectorPath &path); void QOpenGLPaintEngine::fill(const QVectorPath &path, const QBrush &brush) { |