diff options
Diffstat (limited to 'configmgr/source/backend/singlebackendadapter.hxx')
-rw-r--r-- | configmgr/source/backend/singlebackendadapter.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/configmgr/source/backend/singlebackendadapter.hxx b/configmgr/source/backend/singlebackendadapter.hxx index 39b1cc5a3fd2..8e4ef0707ba2 100644 --- a/configmgr/source/backend/singlebackendadapter.hxx +++ b/configmgr/source/backend/singlebackendadapter.hxx @@ -2,9 +2,9 @@ * * $RCSfile: singlebackendadapter.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: cyrillem $ $Date: 2002-06-17 14:28:57 $ + * last change: $Author: hr $ $Date: 2003-03-19 16:18:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -70,6 +70,10 @@ #include <drafts/com/sun/star/configuration/backend/XSingleBackend.hpp> #endif // _COM_SUN_STAR_CONFIGURATION_BACKEND_XSINGLEBACKEND_HPP_ +#ifndef _COM_SUN_STAR_UNO_XCOMPONENTCONTEXT_HPP_ +#include <com/sun/star/uno/XComponentContext.hpp> +#endif + #ifndef _COM_SUN_STAR_LANG_XINITIALIZATION_HPP_ #include <com/sun/star/lang/XInitialization.hpp> #endif // _COM_SUN_STAR_LANG_XINITIALIZATION_HPP_ @@ -78,10 +82,6 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #endif // _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_ -#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_ -#include <com/sun/star/lang/XMultiServiceFactory.hpp> -#endif // _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_ - #ifndef _CPPUHELPER_COMPBASE3_HXX_ #include <cppuhelper/compbase3.hxx> #endif // _CPPUHELPER_COMPBASE3_HXX_ @@ -109,7 +109,7 @@ class SingleBackendAdapter : public BackendBase { @param aFactory service factory */ SingleBackendAdapter( - const uno::Reference<lang::XMultiServiceFactory>& aFactory) ; + const uno::Reference<uno::XComponentContext>& xContext) ; /** Destructor */ ~SingleBackendAdapter(void) ; @@ -169,7 +169,7 @@ class SingleBackendAdapter : public BackendBase { protected : private : /** Service factory */ - const uno::Reference<lang::XMultiServiceFactory>& mFactory ; + uno::Reference<lang::XMultiServiceFactory> mFactory ; /** Mutex for resource protection */ osl::Mutex mMutex ; /** Remote backend that the offline cache is handling */ |