Initialise members

Not a real issue as initialize() is always called before they're used
but  it's cleaner and fixes a coverity warning.

Change-Id: Ib1168be7f9d72c7d5765850a7f35d524ea279a75
This commit is contained in:
David Edmundson 2015-03-24 11:45:59 +01:00
parent 039b808b07
commit 7b355093d0

View File

@ -43,8 +43,8 @@ public:
virtual void initialize();
private:
QOpenGLFunctions *glFuncs;
int m_progressId;
QOpenGLFunctions *glFuncs = 0;
int m_progressId = 0;
};
QList<QByteArray> FadingMaterialShader::attributes() const