diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-01 14:55:57 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-01 15:30:00 -0600 |
commit | 74fe7a96aaa00dab580510c162a4373cb811146f (patch) | |
tree | c5abc50a14746684d723210e45758d36f3b242b8 /dbaccess | |
parent | e9ae8e42562a76fdbad3f42a021e1adec81099d8 (diff) |
coverity#707741 : Uninitialized scalar field
Change-Id: I1165102386aa5f6a9a35613ef199a1a5caad4ce3
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/QTableConnection.cxx | 7 |
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 } |