coverity#984088 Uninitialized pointer field

Change-Id: I228f7c8f99b0cc3117fbeab78efbeddd74896d54
This commit is contained in:
Caolán McNamara 2014-03-19 16:05:03 +00:00
parent d4abe5ea0f
commit b0ff06a5bc

View File

@ -37,22 +37,20 @@
#include <vcl/syschild.hxx> #include <vcl/syschild.hxx>
#include <toolkit/helper/vclunohelper.hxx> #include <toolkit/helper/vclunohelper.hxx>
PluginControl_Impl::PluginControl_Impl()
: _pMultiplexer( NULL )
PluginControl_Impl::PluginControl_Impl() :
_pMultiplexer( NULL )
, _nX( 0 ) , _nX( 0 )
, _nY( 0 ) , _nY( 0 )
, _nWidth( 100 ) , _nWidth( 100 )
, _nHeight( 100 ) , _nHeight( 100 )
, _nFlags( WINDOW_POSSIZE_ALL ) , _nFlags( WINDOW_POSSIZE_ALL )
, _bVisible( sal_False ) , _bVisible(false)
, _bInDesignMode( sal_False ) , _bInDesignMode(false)
, _bEnable( sal_True ) , _bEnable(true)
, _pSysChild(NULL)
{ {
} }
PluginControl_Impl::~PluginControl_Impl() PluginControl_Impl::~PluginControl_Impl()
{ {
} }