summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-01 16:13:27 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-01 16:13:27 -0600
commitc20d57c650f9c3b96c36f1afe831763fa3dfafca (patch)
tree23ee10b5ac2e445849349e1c402f04109a465a07 /dbaccess
parent6ebd7992ae774c7eb96b55c1cf39fbd922f66878 (diff)
coverity#707745 : Uninitialized scalar field
Change-Id: If59d4018da0c406ecaa8e8348aa8ca95db72c5f1
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/querydesign/TableFieldDescription.cxx4
1 files changed, 4 insertions, 0 deletions
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)