diff -r c9d1dad83ad0 -r 4b7306f52bb5 src/glCompiler.cc --- a/src/glCompiler.cc Mon Jun 02 14:34:23 2014 +0300 +++ b/src/glCompiler.cc Tue Jun 03 20:28:10 2014 +0300 @@ -30,7 +30,7 @@ struct GLErrorInfo { GLenum value; - String text; + QString text; }; static const GLErrorInfo g_GLErrors[] = @@ -59,7 +59,7 @@ // void checkGLError_private (const char* file, int line) { - String errmsg; + QString errmsg; GLenum errnum = glGetError(); if (errnum == GL_NO_ERROR) @@ -74,7 +74,7 @@ } } - print ("OpenGL ERROR: at %1:%2: %3", basename (String (file)), line, errmsg); + print ("OpenGL ERROR: at %1:%2: %3", basename (QString (file)), line, errmsg); } // =============================================================================