summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-19 16:05:03 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-19 20:22:51 +0000
commitb0ff06a5bc78839f43c73ac529c91a23293e93e8 (patch)
treec79460be157e7ad3cc97c791ddc3fc228ab39f1c /extensions
parentd4abe5ea0f89f9dbff49c1acf5f424f6afd9b5b2 (diff)
coverity#984088 Uninitialized pointer field
Change-Id: I228f7c8f99b0cc3117fbeab78efbeddd74896d54
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/plugin/base/plctrl.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/extensions/source/plugin/base/plctrl.cxx b/extensions/source/plugin/base/plctrl.cxx
index 9fe78215d295..fc19c0d20229 100644
--- a/extensions/source/plugin/base/plctrl.cxx
+++ b/extensions/source/plugin/base/plctrl.cxx
@@ -37,22 +37,20 @@
#include <vcl/syschild.hxx>
#include <toolkit/helper/vclunohelper.hxx>
-
-
-PluginControl_Impl::PluginControl_Impl() :
- _pMultiplexer( NULL )
+PluginControl_Impl::PluginControl_Impl()
+ : _pMultiplexer( NULL )
, _nX( 0 )
, _nY( 0 )
, _nWidth( 100 )
, _nHeight( 100 )
, _nFlags( WINDOW_POSSIZE_ALL )
- , _bVisible( sal_False )
- , _bInDesignMode( sal_False )
- , _bEnable( sal_True )
+ , _bVisible(false)
+ , _bInDesignMode(false)
+ , _bEnable(true)
+ , _pSysChild(NULL)
{
}
-
PluginControl_Impl::~PluginControl_Impl()
{
}