diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-18 11:41:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-18 15:18:08 +0000 |
commit | 4b076ecc07ea45458ff2c619bf03b9abd492388e (patch) | |
tree | 3311bfcfd640c476946fb186d2450ec2fa1afbe0 /desktop/source | |
parent | 192623b391342c592ccf15a8468aee9c66a88c48 (diff) |
coverity#984085 Uninitialized scalar field
Change-Id: I84ff62f0a592a012fa7963f81f4bafcc0ebf420f
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/splash/splash.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx index 3ce90a4c7296..755684be2bef 100644 --- a/desktop/source/splash/splash.cxx +++ b/desktop/source/splash/splash.cxx @@ -130,9 +130,12 @@ SplashScreen::SplashScreen() , _eBitmapMode(BM_DEFAULTMODE) , _bPaintBitmap(sal_True) , _bPaintProgress(sal_False) + , _bVisible(true) , _bShowLogo(sal_True) , _bFullScreenSplash(sal_False) , _bProgressEnd(sal_False) + , _height(0) + , _width(0) , _tlx(NOT_LOADED) , _tly(NOT_LOADED) , _barwidth(NOT_LOADED) |