diff options
| author | Thiago Macieira <[email protected]> | 2012-05-02 16:32:26 +0200 |
|---|---|---|
| committer | Qt by Nokia <[email protected]> | 2012-05-04 12:46:31 +0200 |
| commit | de3e06a9e2f285571d5dcf40f67bc19615119c5c (patch) | |
| tree | b86efd520989b9a9bbe15a331b76d0aeec8be6a7 /src/opengl/qgl_qpa.cpp | |
| parent | dd5b373d41f99f06efd1a927a3323abada4fd6ef (diff) | |
Change remaining uses of {to,from}Ascii to {to,from}Latin1 [QtOpenGL]
This operation should be a no-op anyway, since at this point in time,
the fromAscii and toAscii functions simply call their fromLatin1 and
toLatin1 counterparts.
Task-number: QTBUG-21872
Change-Id: I6ea46cd6dfed75afc253fa2b4e3f1789bdad1d4e
Reviewed-by: Gunnar Sletta <[email protected]>
Diffstat (limited to 'src/opengl/qgl_qpa.cpp')
| -rw-r--r-- | src/opengl/qgl_qpa.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opengl/qgl_qpa.cpp b/src/opengl/qgl_qpa.cpp index ef65d0821b0..8810b70f087 100644 --- a/src/opengl/qgl_qpa.cpp +++ b/src/opengl/qgl_qpa.cpp @@ -234,7 +234,7 @@ void QGLContext::swapBuffers() const QFunctionPointer QGLContext::getProcAddress(const QString &procName) const { Q_D(const QGLContext); - return d->guiGlContext->getProcAddress(procName.toAscii()); + return d->guiGlContext->getProcAddress(procName.toLatin1()); } void QGLWidget::setContext(QGLContext *context, |
