summaryrefslogtreecommitdiffstats
path: root/cppuhelper/source/servicemanager.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-01-16 13:35:29 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-01-16 17:27:00 +0100
commit882aaee5ff76dbcba74ecea615393628519e14e1 (patch)
tree85134b3e19bebcae95fbde99ae2a4f0d53dcdc2a /cppuhelper/source/servicemanager.hxx
parentGet rid of GetVersionInfo and checkdll (diff)
downloadcore-882aaee5ff76dbcba74ecea615393628519e14e1.tar.gz
core-882aaee5ff76dbcba74ecea615393628519e14e1.zip
UNO methods are no longer called directly on ServiceManager
Change-Id: I037ed9899873e614e9e10c89f1f8a74efa73d737
Diffstat (limited to 'cppuhelper/source/servicemanager.hxx')
-rw-r--r--cppuhelper/source/servicemanager.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cppuhelper/source/servicemanager.hxx b/cppuhelper/source/servicemanager.hxx
index e4a9dfaa9055..013bef0493e1 100644
--- a/cppuhelper/source/servicemanager.hxx
+++ b/cppuhelper/source/servicemanager.hxx
@@ -155,6 +155,11 @@ public:
css::uno::Reference< css::lang::XSingleComponentFactory > * factory1,
css::uno::Reference< css::lang::XSingleServiceFactory > * factory2);
+private:
+ virtual ~ServiceManager() {}
+
+ virtual void SAL_CALL disposing();
+
virtual rtl::OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException);
@@ -278,11 +283,6 @@ public:
virtual void SAL_CALL disposing(css::lang::EventObject const & Source)
throw (css::uno::RuntimeException);
-private:
- virtual ~ServiceManager() {}
-
- virtual void SAL_CALL disposing();
-
// needs to be called with rBHelper.rMutex locked:
bool isDisposed() { return rBHelper.bDisposed || rBHelper.bInDispose; }