diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-12 16:58:32 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-13 12:50:12 +0100 |
commit | 86fc293a4fea63d21e5afe717c18ee9419211fe3 (patch) | |
tree | 7af3cb5ff039ec0ebafc4cd16d43e92d416f3a10 /ucb | |
parent | 8ad74d8866c77ca52f8c2562b728fc876c23f1c0 (diff) |
No need for SortedDynamicResultSet::impl_* to be virtual
Change-Id: Ib9b84b7ac3205498c0502945b26c40a75e97c935
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/sorter/sortdynres.cxx | 4 | ||||
-rw-r--r-- | ucb/source/sorter/sortdynres.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/sorter/sortdynres.cxx b/ucb/source/sorter/sortdynres.cxx index 07f7dc6c41c6..c2226383f50b 100644 --- a/ucb/source/sorter/sortdynres.cxx +++ b/ucb/source/sorter/sortdynres.cxx @@ -287,7 +287,7 @@ sal_Int16 SAL_CALL SortedDynamicResultSet::getCapabilities() update call at once is, while he disposes his broadcaster or while he is removing himsef as listener (otherwise you deadlock)!!! */ -void SAL_CALL SortedDynamicResultSet::impl_notify( const ListEvent& Changes ) +void SortedDynamicResultSet::impl_notify( const ListEvent& Changes ) throw( RuntimeException ) { osl::Guard< osl::Mutex > aGuard( maMutex ); @@ -417,7 +417,7 @@ void SAL_CALL SortedDynamicResultSet::impl_notify( const ListEvent& Changes ) // XEventListener -void SAL_CALL SortedDynamicResultSet::impl_disposing( const EventObject& ) +void SortedDynamicResultSet::impl_disposing( const EventObject& ) throw( RuntimeException ) { mxListener.clear(); diff --git a/ucb/source/sorter/sortdynres.hxx b/ucb/source/sorter/sortdynres.hxx index eb5bbb6eefad..ba05cb9b9222 100644 --- a/ucb/source/sorter/sortdynres.hxx +++ b/ucb/source/sorter/sortdynres.hxx @@ -126,10 +126,10 @@ public: // own methods: - virtual void SAL_CALL impl_disposing( const css::lang::EventObject& Source ) + void impl_disposing( const css::lang::EventObject& Source ) throw( css::uno::RuntimeException ); - virtual void SAL_CALL impl_notify( const css::ucb::ListEvent& Changes ) + void impl_notify( const css::ucb::ListEvent& Changes ) throw( css::uno::RuntimeException ); }; |