diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-17 16:02:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-18 08:51:07 +0200 |
commit | 7477ab139142c55da6a7d4fb10903dcb464ee97b (patch) | |
tree | 7761955992cff3a8070c4e2860d9524ea7315c04 /xmloff/source/draw/animationexport.cxx | |
parent | 281fa6ac6a7df48dd65f5019d5a74148a096e253 (diff) |
loplugin:inlineablemethods in xmloff
Change-Id: I22202f85c65a862ccdafe1d521e2945e3d99252a
Diffstat (limited to 'xmloff/source/draw/animationexport.cxx')
-rw-r--r-- | xmloff/source/draw/animationexport.cxx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/xmloff/source/draw/animationexport.cxx b/xmloff/source/draw/animationexport.cxx index 9dcfa584d7f2..88ba4da34785 100644 --- a/xmloff/source/draw/animationexport.cxx +++ b/xmloff/source/draw/animationexport.cxx @@ -518,7 +518,6 @@ public: static void convertPath( OUStringBuffer& sTmp, const Any& rPath ); void convertValue( XMLTokenEnum eAttributeName, OUStringBuffer& sTmp, const Any& rValue ) const; void convertTiming( OUStringBuffer& sTmp, const Any& rTiming ) const; - void convertSource( OUStringBuffer& sTmp, const Any& rSource ) const; void convertTarget( OUStringBuffer& sTmp, const Any& rTarget ) const; void prepareValue( const Any& rValue ); @@ -1564,7 +1563,7 @@ void AnimationsExporterImpl::convertTiming( OUStringBuffer& sTmp, const Any& rVa { if( pEvent->Source.hasValue() ) { - convertSource( sTmp, pEvent->Source ); + convertTarget( sTmp, pEvent->Source ); sTmp.append( '.' ); } @@ -1589,11 +1588,6 @@ void AnimationsExporterImpl::convertTiming( OUStringBuffer& sTmp, const Any& rVa } } -void AnimationsExporterImpl::convertSource( OUStringBuffer& sTmp, const Any& rSource ) const -{ - convertTarget( sTmp, rSource ); -} - void AnimationsExporterImpl::convertTarget( OUStringBuffer& sTmp, const Any& rTarget ) const { if( !rTarget.hasValue() ) |