diff options
author | Laszlo Agocs <laszlo.agocs@digia.com> | 2014-05-12 14:01:12 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-05-12 15:37:15 +0200 |
commit | 98c56811d3ffb6127eba61e1d0cc4c856a357d69 (patch) | |
tree | 2b41f32096d2018c2672a2c4f2495f96b778828e /src/hardwareintegration | |
parent | 189ad97ce3bf78d78453b2a614b3d813bc383e57 (diff) | |
download | qtwayland-98c56811d3ffb6127eba61e1d0cc4c856a357d69.tar.gz |
Show the correct function name when makeCurrent fails
Change-Id: I0fb0dcdf9d9691bbda602a7cf6cd04ce2e094769
Reviewed-by: Giulio Camuffo <giulio.camuffo@jollamobile.com>
Diffstat (limited to 'src/hardwareintegration')
-rw-r--r-- | src/hardwareintegration/client/wayland-egl/qwaylandglcontext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hardwareintegration/client/wayland-egl/qwaylandglcontext.cpp b/src/hardwareintegration/client/wayland-egl/qwaylandglcontext.cpp index 04cfbe6b..5e62c9fa 100644 --- a/src/hardwareintegration/client/wayland-egl/qwaylandglcontext.cpp +++ b/src/hardwareintegration/client/wayland-egl/qwaylandglcontext.cpp @@ -118,7 +118,7 @@ bool QWaylandGLContext::makeCurrent(QPlatformSurface *surface) eglSurface = window->eglSurface(); } if (!eglMakeCurrent(m_eglDisplay, eglSurface, eglSurface, m_context)) { - qWarning("QEGLPlatformContext::makeCurrent: eglError: %x, this: %p \n", eglGetError(), this); + qWarning("QWaylandGLContext::makeCurrent: eglError: %x, this: %p \n", eglGetError(), this); return false; } |