From 9a06b99d2f53bd8d0a9ab0936efed9924a2abb88 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 4 Dec 2017 14:20:26 +0200 Subject: loplugin:salcall fix non-virtual methods first, since those are safer to change than virtual methods Change-Id: Ie3b624019d75ee2b793cee33b3c5f64e994e8bfe Reviewed-on: https://gerrit.libreoffice.org/45798 Tested-by: Jenkins Reviewed-by: Noel Grandin --- extensions/source/propctrlr/composeduiupdate.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'extensions/source/propctrlr/composeduiupdate.cxx') diff --git a/extensions/source/propctrlr/composeduiupdate.cxx b/extensions/source/propctrlr/composeduiupdate.cxx index c6a1c32a7ea7..86e6bb8f670a 100644 --- a/extensions/source/propctrlr/composeduiupdate.cxx +++ b/extensions/source/propctrlr/composeduiupdate.cxx @@ -711,14 +711,14 @@ namespace pcr } - void SAL_CALL ComposedPropertyUIUpdate::suspendAutoFire() + void ComposedPropertyUIUpdate::suspendAutoFire() { impl_checkDisposed(); osl_atomic_increment( &m_nSuspendCounter ); } - void SAL_CALL ComposedPropertyUIUpdate::resumeAutoFire() + void ComposedPropertyUIUpdate::resumeAutoFire() { impl_checkDisposed(); if ( 0 == osl_atomic_decrement( &m_nSuspendCounter ) ) @@ -747,7 +747,7 @@ namespace pcr } - void SAL_CALL ComposedPropertyUIUpdate::dispose() + void ComposedPropertyUIUpdate::dispose() { if ( impl_isDisposed() ) return; -- cgit