diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-07-09 16:07:49 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-09 20:37:25 +0000 |
commit | 8791cff003afc323601dd43289e642471ac26863 (patch) | |
tree | fe76d11c42947d0110245d0cf5d207f40612d7b7 | |
parent | e3e9684ef8974f4d0d4c72fdf24418d565a1e66b (diff) |
tdf#92434 - dispose the table contents.
fix issue from: 6d0c89123f353aed80d3a8a08ef5cd1ffaa1eea9
Change-Id: Ia5b7bb91c366ecbbb3111d6f5239d5360640ca2d
Reviewed-on: https://gerrit.libreoffice.org/16893
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/16895
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r-- | dbaccess/source/ui/querydesign/JoinTableView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/querydesign/JoinTableView.cxx b/dbaccess/source/ui/querydesign/JoinTableView.cxx index 7beabafab09c..a1dbb2df6e31 100644 --- a/dbaccess/source/ui/querydesign/JoinTableView.cxx +++ b/dbaccess/source/ui/querydesign/JoinTableView.cxx @@ -1537,7 +1537,7 @@ void OJoinTableView::clearLayoutInformation() { if ( aIter->second ) aIter->second->clearListBox(); - aIter->second = NULL; + aIter->second.disposeAndClear(); } m_aTableMap.clear(); |