diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-17 11:16:07 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-17 12:26:32 +0000 |
commit | d9e627039245dc42f003a7cf75642f619a621513 (patch) | |
tree | d10188cbdf0808f4c4c6663025e15bd4bac47284 /include/svx | |
parent | be3d2309f0376914b0135046f95b0bb592cf5078 (diff) |
loplugin:unnecessaryvirtual
update the plugin with lessons learned from the mergeclasses plugin and
re-run it
Change-Id: I9d622eb3d05fceaf8fa764c533c8fa5dfb4c7711
Reviewed-on: https://gerrit.libreoffice.org/20015
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/svdotext.hxx | 2 | ||||
-rw-r--r-- | include/svx/textchainflow.hxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svdotext.hxx b/include/svx/svdotext.hxx index 149963c4cdef..132b5b8416f3 100644 --- a/include/svx/svdotext.hxx +++ b/include/svx/svdotext.hxx @@ -558,7 +558,7 @@ public: virtual void onEditOutlinerStatusEvent( EditStatus* pEditStatus ); /** called from the SdrObjEditView during text edit when a chain of boxes is to be updated */ - virtual void onChainingEvent(); + void onChainingEvent(); diff --git a/include/svx/textchainflow.hxx b/include/svx/textchainflow.hxx index e2148548b98b..557aa9e847a8 100644 --- a/include/svx/textchainflow.hxx +++ b/include/svx/textchainflow.hxx @@ -40,10 +40,10 @@ public: // Check for flow events in Outliner virtual void CheckForFlowEvents(SdrOutliner *); - virtual void ExecuteUnderflow(SdrOutliner *); + void ExecuteUnderflow(SdrOutliner *); // Uses two outliners: one for the non-overflow text and one for overflowing (might be the same) - virtual void ExecuteOverflow(SdrOutliner *, SdrOutliner *); + void ExecuteOverflow(SdrOutliner *, SdrOutliner *); bool IsOverflow() const; bool IsUnderflow() const; @@ -65,7 +65,7 @@ protected: TextChain *GetTextChain() const; virtual void impLeaveOnlyNonOverflowingText(SdrOutliner *); - virtual void impMoveChainedTextToNextLink(SdrOutliner *); + void impMoveChainedTextToNextLink(SdrOutliner *); virtual void impSetFlowOutlinerParams(SdrOutliner *, SdrOutliner *); |