kwin: Fix a compiler warning about initialization order.
This commit is contained in:
parent
f21ccf028a
commit
9dfc0332c6
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