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

coverity#1210184 Uninitialized scalar field

Change-Id: Ic632e75e35bc14b714a30e71eb9957d3f949cbf5
üst 80c61632
......@@ -2160,11 +2160,14 @@ CmisYesNo::CmisYesNo( Window* pParent, bool bValue )
}
// struct CmisPropertyLine ---------------------------------------------
CmisPropertyLine::CmisPropertyLine( Window* pParent )
CmisPropertyLine::CmisPropertyLine(Window* pParent)
: m_sType(CMIS_TYPE_STRING)
, m_bUpdatable(false)
, m_bRequired(false)
, m_bMultiValued(false)
, m_bOpenChoice(false)
, m_nNumValue(1)
{
m_nNumValue = 1;
m_sId = "";
m_sType = CMIS_TYPE_STRING;
m_pUIBuilder = new VclBuilder( pParent, getUIRootDir(), "sfx/ui/cmisline.ui");
get( m_pFrame, "CmisFrame" );
get( m_aName, "name" );
......
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