summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-07-05 13:26:08 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-07-06 11:08:56 +0200
commit080bc640358aad36d93a02fe51b922eec994cfe7 (patch)
tree3717d5f26a61efec7f93ca3c989aa7b2e0e40bcb /sw/inc
parente8be539b0eba0ec1e4cbea0b4464ff4945fdacb1 (diff)
fix bug in "Replace RES_NAME_CHANGED with an SfxHint for stronger typing"
where commit f48cb25a914902d92bd109eff86ec3b6d26ba9c3 Author: Bjoern Michaelsen <bjoern.michaelsen@libreoffice.org> Date: Thu Sep 15 00:34:50 2022 +0200 added a new constant SfxHintId::SwNameChanged and then used it in some places, but not others Change-Id: Id9fa07a1d5fe07a3ac8a74d9d32b9bfe8e6c38e8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154054 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/hints.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx
index 63d8210ef1b4..46a3c586771f 100644
--- a/sw/inc/hints.hxx
+++ b/sw/inc/hints.hxx
@@ -236,7 +236,7 @@ class NameChanged final : public SfxHint
public:
const OUString m_sOld;
const OUString m_sNew;
- NameChanged(const OUString& rOld, const OUString& rNew) : SfxHint(SfxHintId::NameChanged), m_sOld(rOld), m_sNew(rNew) {};
+ NameChanged(const OUString& rOld, const OUString& rNew) : SfxHint(SfxHintId::SwNameChanged), m_sOld(rOld), m_sNew(rNew) {};
};
class TitleChanged final : public SfxHint
{