summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/outliner/overflowingtxt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/outliner/overflowingtxt.cxx b/editeng/source/outliner/overflowingtxt.cxx
index 6f2967c3c87e..995216faf202 100644
--- a/editeng/source/outliner/overflowingtxt.cxx
+++ b/editeng/source/outliner/overflowingtxt.cxx
@@ -127,7 +127,7 @@ OverflowingText::OverflowingText(TranferableText xOverflowingContent) :
}
-ESelection OverflowingText::GetInsertionPointSel() const
+ESelection OverflowingText::GetInsertionPointSel()
{
assert(false && "You should never get here");
return getLastPositionSel(NULL);
@@ -193,9 +193,9 @@ OFlowChainedText::OFlowChainedText(Outliner *pOutl, bool bIsDeepMerge)
mbIsDeepMerge = bIsDeepMerge;
}
-ESelection OFlowChainedText::GetInsertionPointSel() const
+ESelection OFlowChainedText::GetInsertionPointSel()
{
- return mpOverflowingTxt->GetInsertionPointSel();
+ return OverflowingText::GetInsertionPointSel();
}
ESelection OFlowChainedText::GetOverflowPointSel() const