summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2022-11-16 18:04:34 +0900
committerTomaž Vajngerl <quikee@gmail.com>2022-11-22 14:56:41 +0100
commitbada1fc45d6ec65c12cf9ed36e15927b27d6d49c (patch)
tree250df45aae59c13daa0b4d43728410d3b83a64cb /sw/inc
parentf8b990aaac155f0b45de3a4452bc300dcf2bb49b (diff)
sw: rename WeakContentNodeContainer to WeakNodeContainer
Change-Id: Ic80c0753b600ff6e846f2f38a1c46cb67763e2fc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142820 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/OnlineAccessibilityCheck.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/OnlineAccessibilityCheck.hxx b/sw/inc/OnlineAccessibilityCheck.hxx
index e87f24d61d44..8f52b73f35bd 100644
--- a/sw/inc/OnlineAccessibilityCheck.hxx
+++ b/sw/inc/OnlineAccessibilityCheck.hxx
@@ -24,14 +24,14 @@ namespace sw
{
/// Contains the node and tracks if the node gets deleted.
/// Note: the node needs to extend sw::BroadcastingModify.
-class WeakContentNodeContainer : public SvtListener
+class WeakNodeContainer : public SvtListener
{
private:
SwNode* m_pNode;
public:
- WeakContentNodeContainer(SwNode* pNode);
- ~WeakContentNodeContainer();
+ WeakNodeContainer(SwNode* pNode);
+ ~WeakNodeContainer();
/// Is the node still alive or it was deleted?
bool isAlive();
@@ -44,7 +44,7 @@ public:
class OnlineAccessibilityCheck : public SvtListener
{
private:
- std::map<SwNode*, std::unique_ptr<WeakContentNodeContainer>> m_aNodes;
+ std::map<SwNode*, std::unique_ptr<WeakNodeContainer>> m_aNodes;
SwDoc& m_rDocument;
sw::AccessibilityCheck m_aAccessibilityCheck;