kwin: Fix a compiler warning about initialization order.

This commit is contained in:
Fredrik Höglund 2011-02-04 17:06:28 +01:00 committed by Marco Martin
parent 4dd9ef3327
commit cf58a57cf4

View file

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