summaryrefslogtreecommitdiffstats
path: root/ucb
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-12 16:58:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-13 12:50:12 +0100
commit86fc293a4fea63d21e5afe717c18ee9419211fe3 (patch)
tree7af3cb5ff039ec0ebafc4cd16d43e92d416f3a10 /ucb
parentRelated: #i124392# fill in SidebarDockingWindow::DoDispose (diff)
downloadcore-86fc293a4fea63d21e5afe717c18ee9419211fe3.tar.gz
core-86fc293a4fea63d21e5afe717c18ee9419211fe3.zip
No need for SortedDynamicResultSet::impl_* to be virtual
Change-Id: Ib9b84b7ac3205498c0502945b26c40a75e97c935
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/sorter/sortdynres.cxx4
-rw-r--r--ucb/source/sorter/sortdynres.hxx4
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 );
};