diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-10 19:19:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-12 12:30:53 +0200 |
commit | dd6d7992d6f16133fafa7a617cf5fa0ba1ae37cc (patch) | |
tree | 49da40c8dbfa15a9fde368e0a8b69a623f357eaf /accessibility | |
parent | 8891472e1f9c5e452a4e8d55241eeba118274092 (diff) |
loplugin:constantparam
Change-Id: I67d74072c776c32a1f91df94c621efe180baf5dc
Reviewed-on: https://gerrit.libreoffice.org/37481
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/inc/extended/AccessibleGridControl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/inc/extended/AccessibleGridControl.hxx b/accessibility/inc/extended/AccessibleGridControl.hxx index 3bcaaac1d288..438315acb7c9 100644 --- a/accessibility/inc/extended/AccessibleGridControl.hxx +++ b/accessibility/inc/extended/AccessibleGridControl.hxx @@ -203,11 +203,11 @@ protected: pContext->commitTableEvent( nEventId, rNewValue, rOldValue ); } virtual void commitEvent( sal_Int16 nEventId, - const css::uno::Any& rNewValue, const css::uno::Any& rOldValue ) override + const css::uno::Any& rNewValue ) override { AccessibleGridControl* pContext( getContext() ); if ( pContext ) - pContext->commitEvent( nEventId, rNewValue, rOldValue ); + pContext->commitEvent( nEventId, rNewValue, css::uno::Any() ); } private: |