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

coverity#984088 Uninitialized pointer field

Change-Id: I228f7c8f99b0cc3117fbeab78efbeddd74896d54
üst d4abe5ea
...@@ -37,22 +37,20 @@ ...@@ -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()
{ {
} }
......
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