summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/editeng/editeng.cxx5
-rw-r--r--editeng/source/outliner/outlin2.cxx4
2 files changed, 2 insertions, 7 deletions
diff --git a/editeng/source/editeng/editeng.cxx b/editeng/source/editeng/editeng.cxx
index ed9f9ff46375..9f0e73f2ad92 100644
--- a/editeng/source/editeng/editeng.cxx
+++ b/editeng/source/editeng/editeng.cxx
@@ -2070,11 +2070,6 @@ void EditEngine::QuickFormatDoc( bool bFull )
pImpEditEngine->UpdateViews( NULL );
}
-void EditEngine::QuickRemoveCharAttribs( sal_Int32 nPara, sal_uInt16 nWhich )
-{
- pImpEditEngine->RemoveCharAttribs( nPara, nWhich );
-}
-
void EditEngine::SetStyleSheet(const EditSelection& aSel, SfxStyleSheet* pStyle)
{
pImpEditEngine->SetStyleSheet(aSel, pStyle);
diff --git a/editeng/source/outliner/outlin2.cxx b/editeng/source/outliner/outlin2.cxx
index 43ca90b621af..168f103eac4a 100644
--- a/editeng/source/outliner/outlin2.cxx
+++ b/editeng/source/outliner/outlin2.cxx
@@ -334,9 +334,9 @@ sal_uLong Outliner::GetLineHeight( sal_Int32 nParagraph, sal_Int32 nLine )
return pEditEngine->GetLineHeight( nParagraph, nLine );
}
-void Outliner::QuickRemoveCharAttribs( sal_Int32 nPara, sal_uInt16 nWhich )
+void Outliner::RemoveCharAttribs( sal_Int32 nPara, sal_uInt16 nWhich )
{
- pEditEngine->QuickRemoveCharAttribs( nPara, nWhich );
+ pEditEngine->RemoveCharAttribs( nPara, nWhich );
}
EESpellState Outliner::HasSpellErrors()