coverity#1202968 Uninitialized scalar field

Change-Id: Ic226202bb1ce429f9dd8e13183ec64ffc9059d05
This commit is contained in:
Caolán McNamara
2014-04-15 21:19:19 +01:00
parent 9a11fbb659
commit 271c634e4f

View File

@@ -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);
}
ScPivotLayoutTreeListLabel::ScPivotLayoutTreeListLabel(Window* pParent, WinBits nBits) :
ScPivotLayoutTreeListBase(pParent, nBits, LABEL_LIST)
{}
ScPivotLayoutTreeListLabel::ScPivotLayoutTreeListLabel(Window* pParent, WinBits nBits)
: ScPivotLayoutTreeListBase(pParent, nBits, LABEL_LIST)
, maDataItem(0)
{
}
ScPivotLayoutTreeListLabel::~ScPivotLayoutTreeListLabel()
{}