summaryrefslogtreecommitdiff
path: root/include/svx/textchainflow.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-17 11:16:07 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-17 12:26:32 +0000
commitd9e627039245dc42f003a7cf75642f619a621513 (patch)
treed10188cbdf0808f4c4c6663025e15bd4bac47284 /include/svx/textchainflow.hxx
parentbe3d2309f0376914b0135046f95b0bb592cf5078 (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/textchainflow.hxx')
-rw-r--r--include/svx/textchainflow.hxx6
1 files changed, 3 insertions, 3 deletions
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 *);