diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-23 21:44:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-24 16:53:55 +0000 |
commit | 04d58ef75a5e6fd7066fcfd257d907f52e4de5a7 (patch) | |
tree | 5d4a01b7069c5963b4ba5a356731d81dcf08ceae /slideshow | |
parent | 7938b75ab7d8052b66859db05201cafc5175d95e (diff) |
String->rtl::OUString
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/shapes/gdimtftools.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/shapes/gdimtftools.cxx b/slideshow/source/engine/shapes/gdimtftools.cxx index e1b4a475d800..ff5037cbbf66 100644 --- a/slideshow/source/engine/shapes/gdimtftools.cxx +++ b/slideshow/source/engine/shapes/gdimtftools.cxx @@ -266,19 +266,19 @@ sal_Int32 getNextActionOffset( MetaAction * pCurrAct ) case META_TEXT_ACTION: { MetaTextAction * pAct = static_cast<MetaTextAction *>(pCurrAct); return (pAct->GetLen() == (sal_uInt16)STRING_LEN - ? pAct->GetText().Len() - pAct->GetIndex() : pAct->GetLen()); + ? pAct->GetText().getLength() - pAct->GetIndex() : pAct->GetLen()); } case META_TEXTARRAY_ACTION: { MetaTextArrayAction * pAct = static_cast<MetaTextArrayAction *>(pCurrAct); return (pAct->GetLen() == (sal_uInt16)STRING_LEN - ? pAct->GetText().Len() - pAct->GetIndex() : pAct->GetLen()); + ? pAct->GetText().getLength() - pAct->GetIndex() : pAct->GetLen()); } case META_STRETCHTEXT_ACTION: { MetaStretchTextAction * pAct = static_cast<MetaStretchTextAction *>(pCurrAct); return (pAct->GetLen() == (sal_uInt16)STRING_LEN - ? pAct->GetText().Len() - pAct->GetIndex() : pAct->GetLen()); + ? pAct->GetText().getLength() - pAct->GetIndex() : pAct->GetLen()); } case META_FLOATTRANSPARENT_ACTION: { MetaFloatTransparentAction * pAct = |