diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-12 14:48:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-12 16:33:42 +0100 |
commit | 53acdd29e32707eb4ad6e922b47e1c1216f9d7d6 (patch) | |
tree | 53b62faaa7b0f7a3781c781dda023a77e6843aca /editeng/source/outliner | |
parent | a551cad4e35b6b664167d65dfc25e5a0f6990687 (diff) |
XubString->OUString
Change-Id: Ib5f39e099d238b739e0d6b3d92d3f04ee50022fb
Diffstat (limited to 'editeng/source/outliner')
-rw-r--r-- | editeng/source/outliner/outlobj.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/editeng/source/outliner/outlobj.cxx b/editeng/source/outliner/outlobj.cxx index 6edfcf48947b..447f7a5ac607 100644 --- a/editeng/source/outliner/outlobj.cxx +++ b/editeng/source/outliner/outlobj.cxx @@ -240,19 +240,22 @@ void OutlinerParaObject::ClearPortionInfo() mpImplOutlinerParaObject->mpEditTextObject->ClearPortionInfo(); } -bool OutlinerParaObject::ChangeStyleSheets(const XubString& rOldName, SfxStyleFamily eOldFamily, const XubString& rNewName, SfxStyleFamily eNewFamily) +bool OutlinerParaObject::ChangeStyleSheets(const OUString& rOldName, + SfxStyleFamily eOldFamily, const OUString& rNewName, SfxStyleFamily eNewFamily) { ImplMakeUnique(); return mpImplOutlinerParaObject->mpEditTextObject->ChangeStyleSheets(rOldName, eOldFamily, rNewName, eNewFamily); } -void OutlinerParaObject::ChangeStyleSheetName(SfxStyleFamily eFamily, const XubString& rOldName, const XubString& rNewName) +void OutlinerParaObject::ChangeStyleSheetName(SfxStyleFamily eFamily, + const OUString& rOldName, const OUString& rNewName) { ImplMakeUnique(); mpImplOutlinerParaObject->mpEditTextObject->ChangeStyleSheetName(eFamily, rOldName, rNewName); } -void OutlinerParaObject::SetStyleSheets(sal_uInt16 nLevel, const XubString rNewName, const SfxStyleFamily& rNewFamily) +void OutlinerParaObject::SetStyleSheets(sal_uInt16 nLevel, const OUString rNewName, + const SfxStyleFamily& rNewFamily) { const sal_uInt32 nCount(mpImplOutlinerParaObject->maParagraphDataVector.size()); |