diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-09-19 13:46:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-09-19 17:13:08 +0200 |
commit | 088f767dcceb9f49a8896c42ab9794f380ecab68 (patch) | |
tree | 71654906f5da8e47d7f5019acba4c66ddb9bfc54 /dbaccess | |
parent | 7a330eafa0c42ac900ded524d21d0c18dfde982e (diff) |
cid#1453856 Uninitialized scalar field
Change-Id: I36217924d6082e65d570e218da317916b67f45eb
Reviewed-on: https://gerrit.libreoffice.org/79139
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/misc/WCopyTable.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dbaccess/source/ui/misc/WCopyTable.cxx b/dbaccess/source/ui/misc/WCopyTable.cxx index e7e94c921fc1..fe217d367b8c 100644 --- a/dbaccess/source/ui/misc/WCopyTable.cxx +++ b/dbaccess/source/ui/misc/WCopyTable.cxx @@ -505,6 +505,7 @@ OCopyTableWizard::OCopyTableWizard(weld::Window* pParent, const OUString& _rDefa , m_nOperation( _nOperation ) , m_ePressed( WIZARD_NONE ) , m_bCreatePrimaryKeyColumn(false) + , m_bUseHeaderLine(false) { construct(); @@ -606,6 +607,7 @@ OCopyTableWizard::OCopyTableWizard( weld::Window* pParent, const OUString& _rDef , m_nOperation( _nOperation ) , m_ePressed( WIZARD_NONE ) , m_bCreatePrimaryKeyColumn(false) + , m_bUseHeaderLine(false) { construct(); for (auto const& sourceCol : _rSourceColVec) |