dbaccess/source/ui/misc/WCopyTable.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit 8ee18d0bb587a30d53e2f1e3cf277d9b18da24ae Author: Julien Nabet <[email protected]> AuthorDate: Mon Nov 15 21:43:39 2021 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Wed Nov 17 07:05:40 2021 +0100 Clear also m_aDestTypeInfo in dtor like m_aTypeInfo (dbaccess/WCopyTable) Change-Id: Ia73503628451a3e5ee5121022545c92b50d12b23 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125261 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/dbaccess/source/ui/misc/WCopyTable.cxx b/dbaccess/source/ui/misc/WCopyTable.cxx index 376c882d373f..03458111fc73 100644 --- a/dbaccess/source/ui/misc/WCopyTable.cxx +++ b/dbaccess/source/ui/misc/WCopyTable.cxx @@ -671,6 +671,7 @@ OCopyTableWizard::~OCopyTableWizard() m_aTypeInfoIndex.clear(); m_aTypeInfo.clear(); m_aDestTypeInfoIndex.clear(); + m_aDestTypeInfo.clear(); } IMPL_LINK_NOARG(OCopyTableWizard, ImplPrevHdl, weld::Button&, void)
