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

coverity#1202963 Uninitialized pointer field

Change-Id: I1cb588ce7df30886354ac0cf2bd81fb95a7e9d37
üst 5e651d40
......@@ -18,9 +18,10 @@
using namespace std;
ScPivotLayoutTreeListBase::ScPivotLayoutTreeListBase(Window* pParent, WinBits nBits, SvPivotTreeListType eType) :
SvTreeListBox(pParent, nBits),
meType(eType)
ScPivotLayoutTreeListBase::ScPivotLayoutTreeListBase(Window* pParent, WinBits nBits, SvPivotTreeListType eType)
: SvTreeListBox(pParent, nBits)
, meType(eType)
, mpParent(NULL)
{
SetHighlightRange();
SetDragDropMode(SV_DRAGDROP_CTRL_MOVE | SV_DRAGDROP_APP_MOVE | SV_DRAGDROP_APP_DROP);
......
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