kwin: Fix a compiler warning about initialization order.
This commit is contained in:
parent
4dd9ef3327
commit
cf58a57cf4
1 changed files with 2 additions and 2 deletions
|
@ -829,8 +829,8 @@ void GLShader::initStatic()
|
|||
}
|
||||
|
||||
GLShader::GLShader()
|
||||
: mValid(false)
|
||||
, mProgram(0)
|
||||
: mProgram(0)
|
||||
, mValid(false)
|
||||
, mTextureWidth(-1.0f)
|
||||
, mTextureHeight(-1.0f)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue