diff options
author | Keith Isdale <keith.isdale@nokia.com> | 2009-11-02 04:29:05 (GMT) |
---|---|---|
committer | Keith Isdale <keith.isdale@nokia.com> | 2009-11-02 04:29:05 (GMT) |
commit | 55dcc5551e338ba16c0db8c7d6593554d3d019b8 (patch) | |
tree | cc17fc1775e2d63e3512eed7f5fee25d8877768e /src/opengl | |
parent | ae576ea123d0625eceb9904e2039b2183cb82a0b (diff) | |
download | Qt-55dcc5551e338ba16c0db8c7d6593554d3d019b8.zip Qt-55dcc5551e338ba16c0db8c7d6593554d3d019b8.tar.gz Qt-55dcc5551e338ba16c0db8c7d6593554d3d019b8.tar.bz2 |
Compilation error qegl_p.h not found for OpenGL ES enabled build of Qt
for WindowsCE
Be more consistant in the usage of <private/foo_p.h> vs "foo_p.h"
Task-number: QTBUG-5149
Reviewed-by: Trond Kjernåsen
Diffstat (limited to 'src/opengl')
-rw-r--r-- | src/opengl/qgl_wince.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/opengl/qgl_wince.cpp b/src/opengl/qgl_wince.cpp index 53b9e27..fea2d3a 100644 --- a/src/opengl/qgl_wince.cpp +++ b/src/opengl/qgl_wince.cpp @@ -54,9 +54,9 @@ #include <windows.h> -#include "qegl_p.h" -#include "qgl_egl_p.h" -#include "qgl_cl_p.h" +#include <private/qegl_p.h> +#include <private/qgl_egl_p.h> +#include <private/qgl_cl_p.h> QT_BEGIN_NAMESPACE |