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

coverity#1202968 Uninitialized scalar field

Change-Id: Ic226202bb1ce429f9dd8e13183ec64ffc9059d05
üst 9a11fbb6
...@@ -23,9 +23,11 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeScPivotLayoutTreeListLabel( ...@@ -23,9 +23,11 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeScPivotLayoutTreeListLabel(
return new ScPivotLayoutTreeListLabel(pParent, WB_BORDER | WB_TABSTOP | WB_CLIPCHILDREN | WB_FORCE_MAKEVISIBLE); return new ScPivotLayoutTreeListLabel(pParent, WB_BORDER | WB_TABSTOP | WB_CLIPCHILDREN | WB_FORCE_MAKEVISIBLE);
} }
ScPivotLayoutTreeListLabel::ScPivotLayoutTreeListLabel(Window* pParent, WinBits nBits) : ScPivotLayoutTreeListLabel::ScPivotLayoutTreeListLabel(Window* pParent, WinBits nBits)
ScPivotLayoutTreeListBase(pParent, nBits, LABEL_LIST) : ScPivotLayoutTreeListBase(pParent, nBits, LABEL_LIST)
{} , maDataItem(0)
{
}
ScPivotLayoutTreeListLabel::~ScPivotLayoutTreeListLabel() ScPivotLayoutTreeListLabel::~ScPivotLayoutTreeListLabel()
{} {}
......
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