coverity#707734 : Uninitialized scalar field

Change-Id: Ic2333fbdcbd3265185f382c947166e6580050ff5
This commit is contained in:
Norbert Thiebaud
2014-02-01 14:44:44 -06:00
parent 9740a2af05
commit 08a35a1460

View File

@@ -82,7 +82,13 @@ namespace dbaui
sal_Bool bHtml;
sal_Bool bError;
DropDescriptor() : nType(E_TABLE),pDroppedAt(NULL),nAction(DND_ACTION_NONE) { }
DropDescriptor()
: nType(E_TABLE)
, pDroppedAt(NULL)
, nAction(DND_ACTION_NONE)
, bHtml(sal_False)
, bError(sal_False)
{ }
};
OTableCopyHelper(OGenericUnoController* _pControler);