diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-21 11:52:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-21 17:11:15 +0200 |
commit | ec340697d682bd7d0a361c8c701e513329c032bd (patch) | |
tree | 97fddfce1e5cf6ad94fc32653b261a1668441ce0 /salhelper | |
parent | 7a7cba91a60c1c6d6645dfb8c7e88c5c6318ddee (diff) |
loplugin:constparams in soltools and various
Change-Id: I5e8e4a9a31aa7c3ff54cc7ce137d08770ea297e1
Reviewed-on: https://gerrit.libreoffice.org/40279
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'salhelper')
-rw-r--r-- | salhelper/source/timer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/salhelper/source/timer.cxx b/salhelper/source/timer.cxx index 435ea0a1f7e2..3b669d97a2b5 100644 --- a/salhelper/source/timer.cxx +++ b/salhelper/source/timer.cxx @@ -37,7 +37,7 @@ public: void SAL_CALL registerTimer(salhelper::Timer* pTimer); /// unregister timer - void SAL_CALL unregisterTimer(salhelper::Timer* pTimer); + void SAL_CALL unregisterTimer(salhelper::Timer const * pTimer); /// lookup timer bool SAL_CALL lookupTimer(const salhelper::Timer* pTimer); @@ -292,7 +292,7 @@ void TimerManager::registerTimer(Timer* pTimer) } } -void TimerManager::unregisterTimer(Timer* pTimer) +void TimerManager::unregisterTimer(Timer const * pTimer) { if (!pTimer) return; |