Kaydet (Commit) 9ab85c29 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1247652 Uninitialized scalar field

Change-Id: I4760bc63f61d59c51b6557bf0e3364c1fe0e56be
üst 748d94bd
...@@ -145,8 +145,10 @@ void MyWorkWindow::Paint( const Rectangle& rRect ) ...@@ -145,8 +145,10 @@ void MyWorkWindow::Paint( const Rectangle& rRect )
Invalidate( INVALIDATE_CHILDREN ); Invalidate( INVALIDATE_CHILDREN );
} }
MyOpenGLWorkWindow::MyOpenGLWorkWindow( vcl::Window* pParent, WinBits nWinStyle ) : MyOpenGLWorkWindow::MyOpenGLWorkWindow( vcl::Window* pParent, WinBits nWinStyle )
MyWorkWindow( pParent, nWinStyle ) : MyWorkWindow(pParent, nWinStyle)
, mnTextureName(0)
, mnTextureAspect(0)
{ {
mbHaveTexture = false; mbHaveTexture = false;
mpOpenGLWindow = new OpenGLWindow( this ); mpOpenGLWindow = new OpenGLWindow( this );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment