diff options
author | Noel Grandin <noel@peralex.com> | 2016-07-27 12:01:17 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-07-27 10:34:53 +0000 |
commit | cb4787c36a300d6783da28540da737dbad951070 (patch) | |
tree | 49973aa3cabde34908e80bf3afc554f5fa16d2a5 /svx/source/tbxctrls/extrusioncontrols.cxx | |
parent | 4b598ccb3f25fc8bac23ed4434a11f6f6ff44bba (diff) |
loplugin:countusersofdefaultparams in svx
Change-Id: Ic46a0dcce477c8b27aa2d4771c48fd45ad73718c
Reviewed-on: https://gerrit.libreoffice.org/27574
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/source/tbxctrls/extrusioncontrols.cxx')
-rw-r--r-- | svx/source/tbxctrls/extrusioncontrols.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/tbxctrls/extrusioncontrols.cxx b/svx/source/tbxctrls/extrusioncontrols.cxx index 87521a9c402b..0832955ff033 100644 --- a/svx/source/tbxctrls/extrusioncontrols.cxx +++ b/svx/source/tbxctrls/extrusioncontrols.cxx @@ -174,7 +174,7 @@ void ExtrusionDirectionWindow::statusChanged( { sal_Int32 nValue = 0; if( Event.State >>= nValue ) - implSetDirection( nValue ); + implSetDirection( nValue, true ); } } else if( Event.FeatureURL.Main == g_sExtrusionProjection ) @@ -187,7 +187,7 @@ void ExtrusionDirectionWindow::statusChanged( { sal_Int32 nValue = 0; if( Event.State >>= nValue ) - implSetProjection( nValue ); + implSetProjection( nValue, true ); } } } @@ -224,7 +224,7 @@ void ExtrusionDirectionWindow::SelectHdl(void* pControl) aArgs[0].Value <<= (sal_Int32)nProjection; mrController.dispatchCommand( g_sExtrusionProjection, aArgs ); - implSetProjection( nProjection ); + implSetProjection( nProjection, true ); } } } |