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