summaryrefslogtreecommitdiffstats
path: root/src/opengl/qglframebufferobject.cpp
diff options
context:
space:
mode:
authorTom Cooksey <thomas.cooksey@nokia.com>2009-09-09 08:23:49 (GMT)
committerTom Cooksey <thomas.cooksey@nokia.com>2009-09-09 08:25:39 (GMT)
commitc363cd989a07056b0b8ea39e44c719512bb1e619 (patch)
tree466dc1ca35179207c9b830d2f60c8e9f623690c9 /src/opengl/qglframebufferobject.cpp
parentcfed7f06e186630c4c84d9cf278a2540a45dde2d (diff)
downloadQt-c363cd989a07056b0b8ea39e44c719512bb1e619.zip
Qt-c363cd989a07056b0b8ea39e44c719512bb1e619.tar.gz
Qt-c363cd989a07056b0b8ea39e44c719512bb1e619.tar.bz2
Fix build breakage on Mac Carbon
A new QGLFramebufferObject constructor was added after the QGLPaintDevice was branched which therefore didn't get patched. Reviewed-by: Trustme
Diffstat (limited to 'src/opengl/qglframebufferobject.cpp')
-rw-r--r--src/opengl/qglframebufferobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opengl/qglframebufferobject.cpp b/src/opengl/qglframebufferobject.cpp
index c1049b6..094f675 100644
--- a/src/opengl/qglframebufferobject.cpp
+++ b/src/opengl/qglframebufferobject.cpp
@@ -652,7 +652,7 @@ QGLFramebufferObject::QGLFramebufferObject(const QSize &size, QMacCompatGLenum t
: d_ptr(new QGLFramebufferObjectPrivate)
{
Q_D(QGLFramebufferObject);
- d->init(size, NoAttachment, target, DEFAULT_FORMAT);
+ d->init(this, size, NoAttachment, target, DEFAULT_FORMAT);
}
#endif