diff options
author | Harald Fernengel <harald.fernengel@nokia.com> | 2009-12-04 13:15:02 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2009-12-04 13:16:56 (GMT) |
commit | 52613f91fe4c8bb4faa93c50cc3fab2d8082fc30 (patch) | |
tree | 48564f7bf5a2523b9bc0b07027965361a259283c /src/gui/egl | |
parent | 2447284a73dd8ce6268614d5709c5a1dcffbde3a (diff) | |
download | Qt-52613f91fe4c8bb4faa93c50cc3fab2d8082fc30.zip Qt-52613f91fe4c8bb4faa93c50cc3fab2d8082fc30.tar.gz Qt-52613f91fe4c8bb4faa93c50cc3fab2d8082fc30.tar.bz2 |
compile again after recent API changes
Diffstat (limited to 'src/gui/egl')
-rw-r--r-- | src/gui/egl/qegl_lite.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/egl/qegl_lite.cpp b/src/gui/egl/qegl_lite.cpp index 40439c6..60b862b 100644 --- a/src/gui/egl/qegl_lite.cpp +++ b/src/gui/egl/qegl_lite.cpp @@ -52,11 +52,11 @@ QT_BEGIN_NAMESPACE -bool QEglContext::createSurface(QPaintDevice *device, const QEglProperties *properties) +EGLSurface QEglContext::createSurface(QPaintDevice *device, const QEglProperties *properties) { Q_UNUSED(device); Q_UNUSED(properties); - return false; + return 0; } EGLDisplay QEglContext::getDisplay(QPaintDevice *device) |