kwin: Fix a compiler warning about initialization order.

This commit is contained in:
Fredrik Höglund 2011-02-04 17:06:28 +01:00
parent f21ccf028a
commit 9dfc0332c6

View file

@ -829,8 +829,8 @@ void GLShader::initStatic()
}
GLShader::GLShader()
: mValid(false)
, mProgram(0)
: mProgram(0)
, mValid(false)
, mTextureWidth(-1.0f)
, mTextureHeight(-1.0f)
{