summaryrefslogtreecommitdiff
path: root/sc/source/ui/app
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2022-09-05 20:31:05 +0200
committerEike Rathke <erack@redhat.com>2022-09-06 01:20:14 +0200
commit540a312af2f02108ea90f5d2a9f3bf573db622e5 (patch)
tree181ce0fbc78116097490d0abe61a47f13ac4d036 /sc/source/ui/app
parent47981aeb3a233a01a8b099d3fe2c3f5a8a9cfb7b (diff)
Related: tdf#150307 Use SfxHintId::ScAreasChanged, tdf#137577 follow-up
... instead of ScTablesRenamed, as ScAreasChanged (confusingly named) was meant exactly for this and also updates the Navigator. Change-Id: I6d90b82e6d5121e69c1a40af369be36544ad1b3b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139453 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins
Diffstat (limited to 'sc/source/ui/app')
-rw-r--r--sc/source/ui/app/inputwin.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 6b695c05bebb..14ef498976ba 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -2399,8 +2399,7 @@ void ScPosWnd::Notify( SfxBroadcaster&, const SfxHint& rHint )
else
{
const SfxHintId nHintId = rHint.GetId();
- if (nHintId == SfxHintId::ScAreasChanged || nHintId == SfxHintId::ScNavigatorUpdateAll
- || nHintId == SfxHintId::ScTablesRenamed)
+ if (nHintId == SfxHintId::ScAreasChanged || nHintId == SfxHintId::ScNavigatorUpdateAll)
FillRangeNames();
}
}