diff options
author | MÁTÉ Gergely <sportember@caesar.elte.hu> | 2013-07-25 14:59:29 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-07-25 19:00:28 +0000 |
commit | 979ec69582608227ffb2a54c634076388b2428f8 (patch) | |
tree | 2d2bc19e1a2f0ba93599a8c6d138109274edf7e8 /sd/inc | |
parent | c3b55c51a911883052b4e62cb9af3eb3cabd85a9 (diff) |
replacing a String to OUString in a sd header
Change-Id: I08d7949b6875f550bca4fbbdef7d92a4bc257d58
Reviewed-on: https://gerrit.libreoffice.org/5099
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/CustomAnimationEffect.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/inc/CustomAnimationEffect.hxx b/sd/inc/CustomAnimationEffect.hxx index 8b64065ab657..3931d6236359 100644 --- a/sd/inc/CustomAnimationEffect.hxx +++ b/sd/inc/CustomAnimationEffect.hxx @@ -99,8 +99,8 @@ public: double getAbsoluteDuration() const { return mfAbsoluteDuration; } - const String& getName() const { return maName; } - void setName( const String& rName ) { maName = rName; } + const OUString& getName() const { return maName; } + void setName( const OUString& rName ) { maName = rName; } sal_Int16 getIterateType() const { return mnIterateType; } SD_DLLPUBLIC void setIterateType( sal_Int16 nIterateType ); @@ -205,7 +205,7 @@ private: EffectSequenceHelper* mpEffectSequence; - String maName; + OUString maName; ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode > mxNode; ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAudio > mxAudio; |