diff options
author | Carolina Gomes <ext-carolina.s.gomes@nomovok.com> | 2010-03-29 03:34:12 (GMT) |
---|---|---|
committer | Tom Cooksey <thomas.cooksey@nokia.com> | 2010-04-14 12:57:00 (GMT) |
commit | 131f634a2595ca7910c34bd07c311aea9de2bb62 (patch) | |
tree | 7109acd5b947093efa19a26d963e3d09e43a1e76 /src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h | |
parent | 65536764c06200762ea6308703eae7ee3df17b15 (diff) | |
download | Qt-131f634a2595ca7910c34bd07c311aea9de2bb62.zip Qt-131f634a2595ca7910c34bd07c311aea9de2bb62.tar.gz Qt-131f634a2595ca7910c34bd07c311aea9de2bb62.tar.bz2 |
More adjustments to QTBUG-6800
Merge-request: 2344
Reviewed-by: Tom Cooksey
Diffstat (limited to 'src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h')
-rw-r--r-- | src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h b/src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h index e91d7ac..0538107 100644 --- a/src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h +++ b/src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h @@ -154,12 +154,15 @@ public: void setRenderTextActive(bool); - bool isNativePaintingActive(); + bool isNativePaintingActive() const; private: Q_DISABLE_COPY(QGL2PaintEngineEx) bool nativePaintingActive; }; +inline bool QGL2PaintEngineEx::isNativePaintingActive() const { + return nativePaintingActive; +} class QGL2PaintEngineExPrivate : public QPaintEngineExPrivate { |