diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-01 16:06:38 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-04-04 12:15:42 +0000 |
commit | 1e55aad7990a47a7d4353ec3365ca46b6c54a10c (patch) | |
tree | c630ad3242e04181000989d0b4f65e1f3e490d20 /vcl | |
parent | 17b1852133427e6c0b4266ccb63e24980aff94f0 (diff) |
loplugin:constantparam in svl
Change-Id: I6c336034a12fda493825b4a8388d3bde6bead910
Reviewed-on: https://gerrit.libreoffice.org/23729
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/toolbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx index d7ea498c6982..eb3b005fdfd7 100644 --- a/vcl/source/window/toolbox.cxx +++ b/vcl/source/window/toolbox.cxx @@ -4563,7 +4563,7 @@ void ToolBox::statusChanged( const css::frame::FeatureStateEvent& Event ) // Update image mirroring/rotation if ( Event.FeatureURL.Complete == ".uno:ImageOrientation" ) { - SfxImageItem aItem( 1, 0 ); + SfxImageItem aItem( 1 ); aItem.PutValue( Event.State, 0 ); mbImagesMirrored = aItem.IsMirrored(); |