diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-09 10:48:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-11 09:45:33 +0200 |
commit | d178cb406bd08f86ec2cc9ddba35f24901f3f386 (patch) | |
tree | 7e344c2cf70da29567c3764b493c6f71cab4068e /sd/source | |
parent | fbffa4e79a58eb4fe175369945ced653070189f7 (diff) |
convert include/editeng/editobj.hxx from String to OUString
Change-Id: I076ae20fb21accf8ff7e7fad096534e97ba7dab4
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/filter/ppt/pptinanimations.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/ppt/pptinanimations.cxx b/sd/source/filter/ppt/pptinanimations.cxx index f52379c0708f..8dfd43ae49b2 100644 --- a/sd/source/filter/ppt/pptinanimations.cxx +++ b/sd/source/filter/ppt/pptinanimations.cxx @@ -3076,7 +3076,7 @@ sal_Int32 AnimationImporter::importTargetElementContainer( const Atom* pAtom, An while( (nPara < nParaCount) && (begin > 0) ) { - sal_Int32 nParaLength = rEditTextObject.GetText( nPara ).Len() + 1; + sal_Int32 nParaLength = rEditTextObject.GetText( nPara ).getLength() + 1; begin -= nParaLength; end -= nParaLength; nPara++; |