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

coverity#1187865 Uninitialized scalar field

Change-Id: I69026472ac720f0dd41710033b3ec3b5f14ccb2c
üst 0564c1c2
......@@ -169,13 +169,24 @@ class ConfigurationAccess_WindowState : public ::cppu::WeakImplHelper2< XNameCo
// provided to outside code!
struct WindowStateInfo
{
WindowStateInfo() : aDockingArea( ::com::sun::star::ui::DockingArea_DOCKINGAREA_TOP ),
aDockPos( 0, 0 ),
aPos( 0, 0 ),
aSize( 0, 0 ),
nInternalState( 0 ),
nStyle( 0 ),
nMask( 0 ) {}
WindowStateInfo()
: bLocked(false)
, bDocked(false)
, bVisible(false)
, bContext(false)
, bHideFromMenu(false)
, bNoClose(false)
, bSoftClose(false)
, bContextActive(false)
, aDockingArea(::com::sun::star::ui::DockingArea_DOCKINGAREA_TOP)
, aDockPos(0, 0)
, aPos(0, 0)
, aSize(0, 0)
, nInternalState(0)
, nStyle(0)
, nMask(0)
{
}
bool bLocked : 1,
bDocked : 1,
......
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