diff options
author | Harald Fernengel <harald@trolltech.com> | 2009-08-06 10:04:36 (GMT) |
---|---|---|
committer | Harald Fernengel <harald@trolltech.com> | 2009-08-06 10:04:36 (GMT) |
commit | e5800dd8fa0c61f3df1ddea4e6a55b4b30eb84a7 (patch) | |
tree | c01e05d0ea5a42fa1ab5f2f5e686806bcd8e5280 /src/opengl | |
parent | 7588eaee83776b510eabdb9206e3cabcb3ee9dc2 (diff) | |
download | Qt-e5800dd8fa0c61f3df1ddea4e6a55b4b30eb84a7.zip Qt-e5800dd8fa0c61f3df1ddea4e6a55b4b30eb84a7.tar.gz Qt-e5800dd8fa0c61f3df1ddea4e6a55b4b30eb84a7.tar.bz2 |
Rename Q_DECLARE_SCOPED_PRIVATE back to Q_DECLARE_PRIVATE
Rationale: We're using template magic now to get the private
pointer in qglobal.h, so no need to have two macros. Also
keeps backward compatibility with outside (KDE) code.
Diffstat (limited to 'src/opengl')
-rw-r--r-- | src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h | 2 | ||||
-rw-r--r-- | src/opengl/qgl.h | 4 | ||||
-rw-r--r-- | src/opengl/qglframebufferobject.h | 2 | ||||
-rw-r--r-- | src/opengl/qglpaintdevice_qws_p.h | 2 | ||||
-rw-r--r-- | src/opengl/qglpixelbuffer.h | 2 | ||||
-rw-r--r-- | src/opengl/qglscreen_qws.h | 2 | ||||
-rw-r--r-- | src/opengl/qglwindowsurface_qws_p.h | 2 | ||||
-rw-r--r-- | src/opengl/qpaintengine_opengl_p.h | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h b/src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h index ccfd3b4..906817b 100644 --- a/src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h +++ b/src/opengl/gl2paintengineex/qpaintengineex_opengl2_p.h @@ -93,7 +93,7 @@ public: class QGL2PaintEngineEx : public QPaintEngineEx { - Q_DECLARE_SCOPED_PRIVATE(QGL2PaintEngineEx) + Q_DECLARE_PRIVATE(QGL2PaintEngineEx) public: QGL2PaintEngineEx(); ~QGL2PaintEngineEx(); diff --git a/src/opengl/qgl.h b/src/opengl/qgl.h index fee19a5..9ee200b 100644 --- a/src/opengl/qgl.h +++ b/src/opengl/qgl.h @@ -266,7 +266,7 @@ Q_OPENGL_EXPORT bool operator!=(const QGLFormat&, const QGLFormat&); class Q_OPENGL_EXPORT QGLContext { - Q_DECLARE_SCOPED_PRIVATE(QGLContext) + Q_DECLARE_PRIVATE(QGLContext) public: QGLContext(const QGLFormat& format, QPaintDevice* device); QGLContext(const QGLFormat& format); @@ -388,7 +388,7 @@ private: class Q_OPENGL_EXPORT QGLWidget : public QWidget { Q_OBJECT - Q_DECLARE_SCOPED_PRIVATE(QGLWidget) + Q_DECLARE_PRIVATE(QGLWidget) public: explicit QGLWidget(QWidget* parent=0, const QGLWidget* shareWidget = 0, Qt::WindowFlags f=0); diff --git a/src/opengl/qglframebufferobject.h b/src/opengl/qglframebufferobject.h index 7130dec..108bbb4 100644 --- a/src/opengl/qglframebufferobject.h +++ b/src/opengl/qglframebufferobject.h @@ -56,7 +56,7 @@ class QGLFramebufferObjectFormat; class Q_OPENGL_EXPORT QGLFramebufferObject : public QPaintDevice { - Q_DECLARE_SCOPED_PRIVATE(QGLFramebufferObject) + Q_DECLARE_PRIVATE(QGLFramebufferObject) public: enum Attachment { NoAttachment, diff --git a/src/opengl/qglpaintdevice_qws_p.h b/src/opengl/qglpaintdevice_qws_p.h index 08ad304..ec7d6c8 100644 --- a/src/opengl/qglpaintdevice_qws_p.h +++ b/src/opengl/qglpaintdevice_qws_p.h @@ -64,7 +64,7 @@ class QWSGLPaintDevicePrivate; class Q_OPENGL_EXPORT QWSGLPaintDevice : public QPaintDevice { - Q_DECLARE_SCOPED_PRIVATE(QWSGLPaintDevice) + Q_DECLARE_PRIVATE(QWSGLPaintDevice) public: QWSGLPaintDevice(QWidget *widget); ~QWSGLPaintDevice(); diff --git a/src/opengl/qglpixelbuffer.h b/src/opengl/qglpixelbuffer.h index f8b5707..06894c0 100644 --- a/src/opengl/qglpixelbuffer.h +++ b/src/opengl/qglpixelbuffer.h @@ -55,7 +55,7 @@ class QGLPixelBufferPrivate; class Q_OPENGL_EXPORT QGLPixelBuffer : public QPaintDevice { - Q_DECLARE_SCOPED_PRIVATE(QGLPixelBuffer) + Q_DECLARE_PRIVATE(QGLPixelBuffer) public: QGLPixelBuffer(const QSize &size, const QGLFormat &format = QGLFormat::defaultFormat(), QGLWidget *shareWidget = 0); diff --git a/src/opengl/qglscreen_qws.h b/src/opengl/qglscreen_qws.h index 4caa134..8f2ccb7 100644 --- a/src/opengl/qglscreen_qws.h +++ b/src/opengl/qglscreen_qws.h @@ -88,7 +88,7 @@ public: class Q_OPENGL_EXPORT QGLScreen : public QScreen { - Q_DECLARE_SCOPED_PRIVATE(QGLScreen) + Q_DECLARE_PRIVATE(QGLScreen) public: QGLScreen(int displayId); virtual ~QGLScreen(); diff --git a/src/opengl/qglwindowsurface_qws_p.h b/src/opengl/qglwindowsurface_qws_p.h index f6d6713..1def568 100644 --- a/src/opengl/qglwindowsurface_qws_p.h +++ b/src/opengl/qglwindowsurface_qws_p.h @@ -70,7 +70,7 @@ class QWSGLWindowSurfacePrivate; class Q_OPENGL_EXPORT QWSGLWindowSurface : public QWSWindowSurface { - Q_DECLARE_SCOPED_PRIVATE(QWSGLWindowSurface) + Q_DECLARE_PRIVATE(QWSGLWindowSurface) public: QWSGLWindowSurface(QWidget *widget); diff --git a/src/opengl/qpaintengine_opengl_p.h b/src/opengl/qpaintengine_opengl_p.h index e1cd897..439782b 100644 --- a/src/opengl/qpaintengine_opengl_p.h +++ b/src/opengl/qpaintengine_opengl_p.h @@ -74,7 +74,7 @@ public: class QOpenGLPaintEngine : public QPaintEngineEx { - Q_DECLARE_SCOPED_PRIVATE(QOpenGLPaintEngine) + Q_DECLARE_PRIVATE(QOpenGLPaintEngine) public: QOpenGLPaintEngine(); ~QOpenGLPaintEngine(); |