diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-21 10:44:17 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-21 13:30:13 +0000 |
commit | 407731c9f403c35357a0d1428c9b99835f79a5f7 (patch) | |
tree | c3550703ea961e727e9fa155aa8efaa96ae84dd0 /sw/inc/SwNumberTree.hxx | |
parent | 2b75376a149803865c7cc0dbc72a870c1d86f428 (diff) |
loplugin:unusedmethods sw
Change-Id: Ied51535fa169451fc4991237122817a34a59f6fe
Reviewed-on: https://gerrit.libreoffice.org/17256
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/inc/SwNumberTree.hxx')
-rw-r--r-- | sw/inc/SwNumberTree.hxx | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sw/inc/SwNumberTree.hxx b/sw/inc/SwNumberTree.hxx index 0ade268ecf22..6a00a2c6bd52 100644 --- a/sw/inc/SwNumberTree.hxx +++ b/sw/inc/SwNumberTree.hxx @@ -467,18 +467,6 @@ protected: SetLastValid( mChildren.end() ); } - /** Invalidation of parent node, if its not counted. - - Usage: on <IsCounted()> state change the parent have to be invalidated - */ - inline void InvalidateNotCountedParent() - { - if ( GetParent() && !GetParent()->IsCountedForNumbering() ) - { - GetParent()->InvalidateMe(); - } - } - /** Set the last valid child of this node. @@ -521,19 +509,6 @@ protected: */ void Notify(); - /** Notification of parent node siblings, if its not counted. - - Usage: on <IsCounted()> state change the parent node and its siblings - have to be notified. - */ - inline void NotifyNotCountedParentSiblings() - { - if ( GetParent() && !GetParent()->IsCountedForNumbering() ) - { - GetParent()->NotifyInvalidSiblings(); - } - } - /** notification of children nodes on certain depth @author OD |