summaryrefslogtreecommitdiffstats
path: root/connectivity/source/commontools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-04 14:20:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-05 07:32:46 +0100
commit9a06b99d2f53bd8d0a9ab0936efed9924a2abb88 (patch)
tree544f3e51a3978bd234a1c9fcdbf12d9b84352da4 /connectivity/source/commontools
parentloplugin:countusersofdefaultparams in editeng..package (diff)
downloadcore-9a06b99d2f53bd8d0a9ab0936efed9924a2abb88.tar.gz
core-9a06b99d2f53bd8d0a9ab0936efed9924a2abb88.zip
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 <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity/source/commontools')
-rw-r--r--connectivity/source/commontools/paramwrapper.cxx2
-rw-r--r--connectivity/source/commontools/warningscontainer.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/commontools/paramwrapper.cxx b/connectivity/source/commontools/paramwrapper.cxx
index 8185b34ce2eb..25e45cd94946 100644
--- a/connectivity/source/commontools/paramwrapper.cxx
+++ b/connectivity/source/commontools/paramwrapper.cxx
@@ -245,7 +245,7 @@ namespace param
}
- void SAL_CALL ParameterWrapper::dispose()
+ void ParameterWrapper::dispose()
{
::osl::MutexGuard aGuard( m_aMutex );
diff --git a/connectivity/source/commontools/warningscontainer.cxx b/connectivity/source/commontools/warningscontainer.cxx
index 2e7d6244c052..50d706e55f18 100644
--- a/connectivity/source/commontools/warningscontainer.cxx
+++ b/connectivity/source/commontools/warningscontainer.cxx
@@ -74,7 +74,7 @@ namespace dbtools
}
- Any SAL_CALL WarningsContainer::getWarnings( ) const
+ Any WarningsContainer::getWarnings( ) const
{
Any aAllWarnings;
if ( m_xExternalWarnings.is() )
@@ -87,7 +87,7 @@ namespace dbtools
}
- void SAL_CALL WarningsContainer::clearWarnings( )
+ void WarningsContainer::clearWarnings( )
{
if ( m_xExternalWarnings.is() )
m_xExternalWarnings->clearWarnings();