summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-01 14:55:57 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-01 15:30:00 -0600
commit74fe7a96aaa00dab580510c162a4373cb811146f (patch)
treec5abc50a14746684d723210e45758d36f3b242b8 /dbaccess/source/ui
parente9ae8e42562a76fdbad3f42a021e1adec81099d8 (diff)
coverity#707741 : Uninitialized scalar field
Change-Id: I1165102386aa5f6a9a35613ef199a1a5caad4ce3
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnection.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/dbaccess/source/ui/querydesign/QTableConnection.cxx b/dbaccess/source/ui/querydesign/QTableConnection.cxx
index 879bdaee6817..0663bb683c1c 100644
--- a/dbaccess/source/ui/querydesign/QTableConnection.cxx
+++ b/dbaccess/source/ui/querydesign/QTableConnection.cxx
@@ -25,13 +25,14 @@ using namespace dbaui;
// class OQueryTableConnection
OQueryTableConnection::OQueryTableConnection(OQueryTableView* pContainer, const TTableConnectionData::value_type& pTabConnData)
- :OTableConnection(pContainer, pTabConnData)
- ,m_bVisited(sal_False)
+ : OTableConnection(pContainer, pTabConnData)
+ , m_bVisited(sal_False)
{
}
OQueryTableConnection::OQueryTableConnection(const OQueryTableConnection& rConn)
- :OTableConnection( rConn )
+ : OTableConnection( rConn )
+ , m_bVisited(sal_False)
{
// no own members, so base class functionality is sufficient
}