summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/svdotext.hxx2
-rw-r--r--include/svx/textchainflow.hxx6
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 *);