diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-11 16:05:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-12 08:33:32 +0200 |
commit | dc0d98590f07c7dae4504b7ed0c0127794f032d8 (patch) | |
tree | b3b926f947185f89f59788f8fc48e6305eac67ff /xmloff/source/draw/animationexport.cxx | |
parent | 03fd8d24c2e4603731e796b24e51289736c65621 (diff) |
clang-tidy performance-unnecessary-value-param in xmloff
Change-Id: I8e6d8e66cdab2e50ee10882e139be29c14ce50f6
Diffstat (limited to 'xmloff/source/draw/animationexport.cxx')
-rw-r--r-- | xmloff/source/draw/animationexport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/draw/animationexport.cxx b/xmloff/source/draw/animationexport.cxx index 3140586c56e8..7bc5521e770d 100644 --- a/xmloff/source/draw/animationexport.cxx +++ b/xmloff/source/draw/animationexport.cxx @@ -1682,7 +1682,7 @@ AnimationsExporter::~AnimationsExporter() { } -void AnimationsExporter::prepare( Reference< XAnimationNode > xRootNode ) +void AnimationsExporter::prepare( const Reference< XAnimationNode >& xRootNode ) { try { @@ -1698,7 +1698,7 @@ void AnimationsExporter::prepare( Reference< XAnimationNode > xRootNode ) } } -void AnimationsExporter::exportAnimations( Reference< XAnimationNode > xRootNode ) +void AnimationsExporter::exportAnimations( const Reference< XAnimationNode >& xRootNode ) { try { |