diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-08-26 16:28:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-08-27 09:27:55 +0200 |
commit | 82a5d94b47b7817e93330049a5926c78900df5fb (patch) | |
tree | 12fedbff609ee5f97e79e1ed28537ff0c7c1058a /lotuswordpro/source | |
parent | 7246759822aff30e4e4e1bca7949eae3b0d960ef (diff) |
ofz#37660: searching in wrong parent for table
Change-Id: Ifa1b70fa0ccc706cec52b318cdfba59f5da2b4d1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121124
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r-- | lotuswordpro/source/filter/xfilter/xftable.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xftable.cxx b/lotuswordpro/source/filter/xfilter/xftable.cxx index 4326f218b1e2..976ee8bb9d86 100644 --- a/lotuswordpro/source/filter/xfilter/xftable.cxx +++ b/lotuswordpro/source/filter/xfilter/xftable.cxx @@ -94,7 +94,7 @@ bool XFTable::ContainsTable(const XFTable* pTable) const { if (pSubTable == pTable) return true; - if (pTable->ContainsTable(pTable)) + if (pSubTable->ContainsTable(pTable)) return true; } if (pCell->HierarchyContains(pTable)) |