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

coverity#707770 Uninitialized scalar field

Change-Id: Ie324197ac0069d8c534cee7a2bae524f9d7f2207
üst 37126a47
...@@ -55,12 +55,13 @@ Sequence<OUString> BibConfig::GetPropertyNames() ...@@ -55,12 +55,13 @@ Sequence<OUString> BibConfig::GetPropertyNames()
return aNames; return aNames;
} }
BibConfig::BibConfig() : BibConfig::BibConfig()
ConfigItem("Office.DataAccess/Bibliography", CONFIG_MODE_DELAYED_UPDATE), : ConfigItem("Office.DataAccess/Bibliography", CONFIG_MODE_DELAYED_UPDATE)
pMappingsArr(new MappingArray), , nTblOrQuery(0)
nBeamerSize(0), , pMappingsArr(new MappingArray)
nViewSize(0), , nBeamerSize(0)
bShowColumnAssignmentWarning(sal_False) , nViewSize(0)
, bShowColumnAssignmentWarning(false)
{ {
//Names of the default columns //Names of the default columns
aColumnDefaults[0] = "Identifier"; aColumnDefaults[0] = "Identifier";
......
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