diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-09-03 19:38:22 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-09-03 21:05:19 +0200 |
commit | d59e728be6d71cfb86c5f2904df793e9dd2d1af5 (patch) | |
tree | 23018da92763b834d52dbaf8f2b2beed7a9396de /editeng | |
parent | 61a9838e521222e0aeb3199e18e6d828801a8035 (diff) |
Remove (misleading) EditEngine::QuickRemoveCharAttribs
Change-Id: I7a0be4e204a239dfdd9c184b3d54a69debe8a208
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/editeng.cxx | 5 | ||||
-rw-r--r-- | editeng/source/outliner/outlin2.cxx | 4 |
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() |