From c20d57c650f9c3b96c36f1afe831763fa3dfafca Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sat, 1 Feb 2014 16:13:27 -0600 Subject: [PATCH] coverity#707745 : Uninitialized scalar field Change-Id: If59d4018da0c406ecaa8e8348aa8ca95db72c5f1 --- dbaccess/source/ui/querydesign/TableFieldDescription.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dbaccess/source/ui/querydesign/TableFieldDescription.cxx b/dbaccess/source/ui/querydesign/TableFieldDescription.cxx index 65f4e05f36a3..5bef6767e6a8 100644 --- a/dbaccess/source/ui/querydesign/TableFieldDescription.cxx +++ b/dbaccess/source/ui/querydesign/TableFieldDescription.cxx @@ -53,8 +53,12 @@ OTableFieldDesc::OTableFieldDesc(const OTableFieldDesc& rRS) OTableFieldDesc::OTableFieldDesc(const OUString& rT, const OUString& rF ) :m_pTabWindow(0) + ,m_eDataType(1000) ,m_eFunctionType( FKT_NONE ) + ,m_eFieldType(TAB_NORMAL_FIELD) ,m_eOrderDir( ORDER_NONE ) + ,m_nIndex(0) + ,m_nColWidth(0) ,m_nColumnId((sal_uInt16)-1) ,m_bGroupBy(sal_False) ,m_bVisible(sal_False)