diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-05 10:11:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-06 07:42:50 +0100 |
commit | c0ac78c97174fcde68daf174f6e8ade502c507d3 (patch) | |
tree | 800de448258b3fd82d78efdb53d4f5c8eed6cb26 /ucb | |
parent | da85b582656219a0bc9d20cef59ae6b7ee1c4a9b (diff) |
loplugin:salcall handle virtual methods
Change-Id: Iab95db31188ea2914a46d63a7ebef3d825e6ec42
Reviewed-on: https://gerrit.libreoffice.org/45851
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/cacher/cachedcontentresultset.cxx | 8 | ||||
-rw-r--r-- | ucb/source/cacher/cachedcontentresultset.hxx | 8 | ||||
-rw-r--r-- | ucb/source/cacher/cachedcontentresultsetstub.cxx | 4 | ||||
-rw-r--r-- | ucb/source/cacher/cachedcontentresultsetstub.hxx | 4 | ||||
-rw-r--r-- | ucb/source/cacher/cacheddynamicresultset.cxx | 6 | ||||
-rw-r--r-- | ucb/source/cacher/cacheddynamicresultset.hxx | 6 | ||||
-rw-r--r-- | ucb/source/cacher/cacheddynamicresultsetstub.cxx | 4 | ||||
-rw-r--r-- | ucb/source/cacher/cacheddynamicresultsetstub.hxx | 4 | ||||
-rw-r--r-- | ucb/source/cacher/contentresultsetwrapper.cxx | 8 | ||||
-rw-r--r-- | ucb/source/cacher/contentresultsetwrapper.hxx | 8 | ||||
-rw-r--r-- | ucb/source/cacher/dynamicresultsetwrapper.cxx | 6 | ||||
-rw-r--r-- | ucb/source/cacher/dynamicresultsetwrapper.hxx | 6 |
12 files changed, 36 insertions, 36 deletions
diff --git a/ucb/source/cacher/cachedcontentresultset.cxx b/ucb/source/cacher/cachedcontentresultset.cxx index 50f56afd8b31..9bca9c11b76f 100644 --- a/ucb/source/cacher/cachedcontentresultset.cxx +++ b/ucb/source/cacher/cachedcontentresultset.cxx @@ -874,7 +874,7 @@ bool CachedContentResultSet //virtual -void SAL_CALL CachedContentResultSet +void CachedContentResultSet ::impl_initPropertySetInfo() { ContentResultSetWrapper::impl_initPropertySetInfo(); @@ -1122,7 +1122,7 @@ Any SAL_CALL CachedContentResultSet //virtual -void SAL_CALL CachedContentResultSet +void CachedContentResultSet ::impl_disposing( const EventObject& rEventObject ) { { @@ -1136,7 +1136,7 @@ void SAL_CALL CachedContentResultSet } //virtual -void SAL_CALL CachedContentResultSet +void CachedContentResultSet ::impl_propertyChange( const PropertyChangeEvent& rEvt ) { impl_EnsureNotDisposed(); @@ -1189,7 +1189,7 @@ void SAL_CALL CachedContentResultSet //virtual -void SAL_CALL CachedContentResultSet +void CachedContentResultSet ::impl_vetoableChange( const PropertyChangeEvent& rEvt ) { impl_EnsureNotDisposed(); diff --git a/ucb/source/cacher/cachedcontentresultset.hxx b/ucb/source/cacher/cachedcontentresultset.hxx index 0299f67c51bb..bdd8837362e7 100644 --- a/ucb/source/cacher/cachedcontentresultset.hxx +++ b/ucb/source/cacher/cachedcontentresultset.hxx @@ -155,7 +155,7 @@ class CachedContentResultSet private: //helping XPropertySet methods. - virtual void SAL_CALL impl_initPropertySetInfo() override; + virtual void impl_initPropertySetInfo() override; /// @throws css::sdbc::SQLException /// @throws css::uno::RuntimeException @@ -218,13 +218,13 @@ public: // own inherited - virtual void SAL_CALL + virtual void impl_disposing( const css::lang::EventObject& Source ) override; - virtual void SAL_CALL + virtual void impl_propertyChange( const css::beans::PropertyChangeEvent& evt ) override; - virtual void SAL_CALL + virtual void impl_vetoableChange( const css::beans::PropertyChangeEvent& aEvent ) override; diff --git a/ucb/source/cacher/cachedcontentresultsetstub.cxx b/ucb/source/cacher/cachedcontentresultsetstub.cxx index e1cc01584d08..93dfbbadc65c 100644 --- a/ucb/source/cacher/cachedcontentresultsetstub.cxx +++ b/ucb/source/cacher/cachedcontentresultsetstub.cxx @@ -90,7 +90,7 @@ Any SAL_CALL CachedContentResultSetStub //virtual -void SAL_CALL CachedContentResultSetStub +void CachedContentResultSetStub ::impl_propertyChange( const PropertyChangeEvent& rEvt ) { impl_EnsureNotDisposed(); @@ -110,7 +110,7 @@ void SAL_CALL CachedContentResultSetStub //virtual -void SAL_CALL CachedContentResultSetStub +void CachedContentResultSetStub ::impl_vetoableChange( const PropertyChangeEvent& rEvt ) { impl_EnsureNotDisposed(); diff --git a/ucb/source/cacher/cachedcontentresultsetstub.hxx b/ucb/source/cacher/cachedcontentresultsetstub.hxx index 45d904f65df0..485952e8b573 100644 --- a/ucb/source/cacher/cachedcontentresultsetstub.hxx +++ b/ucb/source/cacher/cachedcontentresultsetstub.hxx @@ -97,10 +97,10 @@ public: // own inherited - virtual void SAL_CALL + virtual void impl_propertyChange( const css::beans::PropertyChangeEvent& evt ) override; - virtual void SAL_CALL + virtual void impl_vetoableChange( const css::beans::PropertyChangeEvent& aEvent ) override; // XTypeProvider diff --git a/ucb/source/cacher/cacheddynamicresultset.cxx b/ucb/source/cacher/cacheddynamicresultset.cxx index a59383d47e64..3ebc0a4e46a2 100644 --- a/ucb/source/cacher/cacheddynamicresultset.cxx +++ b/ucb/source/cacher/cacheddynamicresultset.cxx @@ -46,7 +46,7 @@ CachedDynamicResultSet::~CachedDynamicResultSet() } //virtual -void SAL_CALL CachedDynamicResultSet +void CachedDynamicResultSet ::impl_InitResultSetOne( const Reference< XResultSet >& xResultSet ) { DynamicResultSetWrapper::impl_InitResultSetOne( xResultSet ); @@ -60,7 +60,7 @@ void SAL_CALL CachedDynamicResultSet } //virtual -void SAL_CALL CachedDynamicResultSet +void CachedDynamicResultSet ::impl_InitResultSetTwo( const Reference< XResultSet >& xResultSet ) { DynamicResultSetWrapper::impl_InitResultSetTwo( xResultSet ); @@ -136,7 +136,7 @@ css::uno::Sequence< OUString > SAL_CALL CachedDynamicResultSet::getSupportedServ // own methods. ( inherited ) //virtual -void SAL_CALL CachedDynamicResultSet +void CachedDynamicResultSet ::impl_disposing( const EventObject& Source ) { DynamicResultSetWrapper::impl_disposing( Source ); diff --git a/ucb/source/cacher/cacheddynamicresultset.hxx b/ucb/source/cacher/cacheddynamicresultset.hxx index 60f4e7d77fb8..6988d0025f55 100644 --- a/ucb/source/cacher/cacheddynamicresultset.hxx +++ b/ucb/source/cacher/cacheddynamicresultset.hxx @@ -37,9 +37,9 @@ class CachedDynamicResultSet m_xContentIdentifierMapping; protected: - virtual void SAL_CALL + virtual void impl_InitResultSetOne( const css::uno::Reference< css::sdbc::XResultSet >& xResultSet ) override; - virtual void SAL_CALL + virtual void impl_InitResultSetTwo( const css::uno::Reference< css::sdbc::XResultSet >& xResultSet ) override; public: @@ -69,7 +69,7 @@ public: // own methods ( inherited ) - virtual void SAL_CALL + virtual void impl_disposing( const css::lang::EventObject& Source ) override; }; diff --git a/ucb/source/cacher/cacheddynamicresultsetstub.cxx b/ucb/source/cacher/cacheddynamicresultsetstub.cxx index 5efa36299c3f..4b8cdaeeb54b 100644 --- a/ucb/source/cacher/cacheddynamicresultsetstub.cxx +++ b/ucb/source/cacher/cacheddynamicresultsetstub.cxx @@ -47,7 +47,7 @@ CachedDynamicResultSetStub::~CachedDynamicResultSetStub() } //virtual -void SAL_CALL CachedDynamicResultSetStub +void CachedDynamicResultSetStub ::impl_InitResultSetOne( const Reference< XResultSet >& xResultSet ) { DynamicResultSetWrapper::impl_InitResultSetOne( xResultSet ); @@ -61,7 +61,7 @@ void SAL_CALL CachedDynamicResultSetStub } //virtual -void SAL_CALL CachedDynamicResultSetStub +void CachedDynamicResultSetStub ::impl_InitResultSetTwo( const Reference< XResultSet >& xResultSet ) { DynamicResultSetWrapper::impl_InitResultSetTwo( xResultSet ); diff --git a/ucb/source/cacher/cacheddynamicresultsetstub.hxx b/ucb/source/cacher/cacheddynamicresultsetstub.hxx index 2fbafe61088c..6ea82f458158 100644 --- a/ucb/source/cacher/cacheddynamicresultsetstub.hxx +++ b/ucb/source/cacher/cacheddynamicresultsetstub.hxx @@ -33,9 +33,9 @@ class CachedDynamicResultSetStub , public css::lang::XServiceInfo { protected: - virtual void SAL_CALL + virtual void impl_InitResultSetOne( const css::uno::Reference< css::sdbc::XResultSet >& xResultSet ) override; - virtual void SAL_CALL + virtual void impl_InitResultSetTwo( const css::uno::Reference< css::sdbc::XResultSet >& xResultSet ) override; public: diff --git a/ucb/source/cacher/contentresultsetwrapper.cxx b/ucb/source/cacher/contentresultsetwrapper.cxx index 1c84d56b46fa..3f9f8aea3639 100644 --- a/ucb/source/cacher/contentresultsetwrapper.cxx +++ b/ucb/source/cacher/contentresultsetwrapper.cxx @@ -146,7 +146,7 @@ void ContentResultSetWrapper::impl_deinit() } //virtual -void SAL_CALL ContentResultSetWrapper::impl_initPropertySetInfo() +void ContentResultSetWrapper::impl_initPropertySetInfo() { { osl::Guard< osl::Mutex > aGuard( m_aMutex ); @@ -737,7 +737,7 @@ void SAL_CALL ContentResultSetWrapper::removeVetoableChangeListener( const OUStr //virtual -void SAL_CALL ContentResultSetWrapper::impl_disposing( const EventObject& ) +void ContentResultSetWrapper::impl_disposing( const EventObject& ) { impl_EnsureNotDisposed(); @@ -760,7 +760,7 @@ void SAL_CALL ContentResultSetWrapper::impl_disposing( const EventObject& ) } //virtual -void SAL_CALL ContentResultSetWrapper::impl_propertyChange( const PropertyChangeEvent& rEvt ) +void ContentResultSetWrapper::impl_propertyChange( const PropertyChangeEvent& rEvt ) { impl_EnsureNotDisposed(); @@ -771,7 +771,7 @@ void SAL_CALL ContentResultSetWrapper::impl_propertyChange( const PropertyChange } //virtual -void SAL_CALL ContentResultSetWrapper::impl_vetoableChange( const PropertyChangeEvent& rEvt ) +void ContentResultSetWrapper::impl_vetoableChange( const PropertyChangeEvent& rEvt ) { impl_EnsureNotDisposed(); diff --git a/ucb/source/cacher/contentresultsetwrapper.hxx b/ucb/source/cacher/contentresultsetwrapper.hxx index 475c3d2d9b65..05d412921a98 100644 --- a/ucb/source/cacher/contentresultsetwrapper.hxx +++ b/ucb/source/cacher/contentresultsetwrapper.hxx @@ -121,7 +121,7 @@ protected: //-- - virtual void SAL_CALL impl_initPropertySetInfo(); //helping XPropertySet + virtual void impl_initPropertySetInfo(); //helping XPropertySet /// @throws css::lang::DisposedException /// @throws css::uno::RuntimeException @@ -205,16 +205,16 @@ public: // own methods /// @throws css::uno::RuntimeException - virtual void SAL_CALL + virtual void impl_disposing( const css::lang::EventObject& Source ); /// @throws css::uno::RuntimeException - virtual void SAL_CALL + virtual void impl_propertyChange( const css::beans::PropertyChangeEvent& evt ); /// @throws css::beans::PropertyVetoException /// @throws css::uno::RuntimeException - virtual void SAL_CALL + virtual void impl_vetoableChange( const css::beans::PropertyChangeEvent& aEvent ); diff --git a/ucb/source/cacher/dynamicresultsetwrapper.cxx b/ucb/source/cacher/dynamicresultsetwrapper.cxx index a0e71b7be81c..643d2280cd5e 100644 --- a/ucb/source/cacher/dynamicresultsetwrapper.cxx +++ b/ucb/source/cacher/dynamicresultsetwrapper.cxx @@ -97,7 +97,7 @@ void DynamicResultSetWrapper::impl_EnsureNotDisposed() } //virtual -void SAL_CALL DynamicResultSetWrapper::impl_InitResultSetOne( const Reference< XResultSet >& xResultSet ) +void DynamicResultSetWrapper::impl_InitResultSetOne( const Reference< XResultSet >& xResultSet ) { osl::Guard< osl::Mutex > aGuard( m_aMutex ); OSL_ENSURE( !m_xSourceResultOne.is(), "Source ResultSet One is set already" ); @@ -106,7 +106,7 @@ void SAL_CALL DynamicResultSetWrapper::impl_InitResultSetOne( const Reference< X } //virtual -void SAL_CALL DynamicResultSetWrapper::impl_InitResultSetTwo( const Reference< XResultSet >& xResultSet ) +void DynamicResultSetWrapper::impl_InitResultSetTwo( const Reference< XResultSet >& xResultSet ) { osl::Guard< osl::Mutex > aGuard( m_aMutex ); OSL_ENSURE( !m_xSourceResultTwo.is(), "Source ResultSet Two is set already" ); @@ -192,7 +192,7 @@ void SAL_CALL DynamicResultSetWrapper::removeEventListener( const Reference< XEv //virtual -void SAL_CALL DynamicResultSetWrapper::impl_disposing( const EventObject& ) +void DynamicResultSetWrapper::impl_disposing( const EventObject& ) { impl_EnsureNotDisposed(); diff --git a/ucb/source/cacher/dynamicresultsetwrapper.hxx b/ucb/source/cacher/dynamicresultsetwrapper.hxx index 34a0e60870fa..1278d927adfb 100644 --- a/ucb/source/cacher/dynamicresultsetwrapper.hxx +++ b/ucb/source/cacher/dynamicresultsetwrapper.hxx @@ -88,10 +88,10 @@ protected: void impl_EnsureNotDisposed(); - virtual void SAL_CALL + virtual void impl_InitResultSetOne( const css::uno::Reference< css::sdbc::XResultSet >& xResultSet ); - virtual void SAL_CALL + virtual void impl_InitResultSetTwo( const css::uno::Reference< css::sdbc::XResultSet >& xResultSet ); @@ -142,7 +142,7 @@ public: // own methods: /// @throws css::uno::RuntimeException - virtual void SAL_CALL + virtual void impl_disposing( const css::lang::EventObject& Source ); /// @throws css::uno::RuntimeException |