Fixed typo in QOpenGLContext warning message.

Change-Id: I967279f4b4875ae80ce45744d559fc7380bc0125
Reviewed-by: Kim M. Kalland <kim.kalland@nokia.com>
This commit is contained in:
Samuel Rødal 2012-02-06 16:43:39 +01:00 committed by Qt by Nokia
parent 16c4224568
commit dbe89db686

View File

@ -289,7 +289,7 @@ bool QOpenGLContext::makeCurrent(QSurface *surface)
return false; return false;
if (surface->surfaceType() != QSurface::OpenGLSurface) { if (surface->surfaceType() != QSurface::OpenGLSurface) {
qWarning() << "QOpenGLContext::makeBuffers() called with non-opengl surface"; qWarning() << "QOpenGLContext::makeCurrent() called with non-opengl surface";
return false; return false;
} }