diff options
author | Tom Cooksey <thomas.cooksey@nokia.com> | 2009-09-09 08:23:49 (GMT) |
---|---|---|
committer | Tom Cooksey <thomas.cooksey@nokia.com> | 2009-09-09 08:25:39 (GMT) |
commit | c363cd989a07056b0b8ea39e44c719512bb1e619 (patch) | |
tree | 466dc1ca35179207c9b830d2f60c8e9f623690c9 /src/opengl | |
parent | cfed7f06e186630c4c84d9cf278a2540a45dde2d (diff) | |
download | Qt-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')
-rw-r--r-- | src/opengl/qglframebufferobject.cpp | 2 |
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 |