summaryrefslogtreecommitdiff
path: root/sw/source/uibase
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2023-05-15 19:11:11 +0200
committerLászló Németh <nemeth@numbertext.org>2023-05-17 19:45:01 +0200
commitaff269c18b9029fec992135a406dc5031927c401 (patch)
treed5280591723728d4570275c7093d9090ab7bc397 /sw/source/uibase
parent247738a9afeeb2f0644fa0307b7023fe115fae83 (diff)
tdf#155345 sw tracked table column: hide them in Hide Changes mode
And if all columns are deleted, hide the table in Hide Changes mode. Follow-up to commit ffd8d20d368a885d6d786749278fa438573227a7 "tdf#150673 sw xmloff: import/export tracked table column" and commit f481c2c8e74bded11fac754e493560391229dbcd "tdf#144057 sw track changes: hide deleted table rows". Change-Id: Ic8f0254d607d629ed6386df94b16a939cde17506 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151805 Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'sw/source/uibase')
-rw-r--r--sw/source/uibase/app/docsh2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/app/docsh2.cxx b/sw/source/uibase/app/docsh2.cxx
index 8f5c4e8d40b8..4de0e8eae7ed 100644
--- a/sw/source/uibase/app/docsh2.cxx
+++ b/sw/source/uibase/app/docsh2.cxx
@@ -1329,7 +1329,7 @@ void SwDocShell::Execute(SfxRequest& rReq)
SwTableNode* pTableNd =
pRedline->GetPoint()->GetNode().FindTableNode();
if ( pTableNd && pTableNd !=
- pOldTableNd && pTableNd->GetTable().HasDeletedRow() )
+ pOldTableNd && pTableNd->GetTable().HasDeletedRowOrCell() )
{
SfxBoolItem aShow(FN_REDLINE_SHOW, true);
SfxViewShell* pViewShell = GetView()