kwin: Fix a compiler warning about initialization order.

icc-effect-5.14.5
Fredrik Höglund 2011-02-04 17:06:28 +01:00 committed by Marco Martin
parent 4dd9ef3327
commit cf58a57cf4
1 changed files with 2 additions and 2 deletions

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)
{