coverity#707743 : Uninitialized scalar field

Change-Id: I80661c2b88b7c10175e4622db7e843699d6c1686
This commit is contained in:
Norbert Thiebaud
2014-02-01 15:05:32 -06:00
parent 4a169e4203
commit 6ebd7992ae
2 changed files with 4 additions and 3 deletions

View File

@@ -40,8 +40,9 @@ OQueryDesignFieldUndoAct::~OQueryDesignFieldUndoAct()
}
OQueryTabWinUndoAct::OQueryTabWinUndoAct(OQueryTableView* pOwner, sal_uInt16 nCommentID)
:OQueryDesignUndoAction(pOwner, nCommentID)
,m_pTabWin(NULL)
: OQueryDesignUndoAction(pOwner, nCommentID)
, m_pTabWin(NULL)
, m_bOwnerOfObjects(sal_False)
{
}