summaryrefslogtreecommitdiff
path: root/embedserv/source/inc/servprov.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'embedserv/source/inc/servprov.hxx')
-rw-r--r--embedserv/source/inc/servprov.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/embedserv/source/inc/servprov.hxx b/embedserv/source/inc/servprov.hxx
index c74458d0ec20..4c445a2f834f 100644
--- a/embedserv/source/inc/servprov.hxx
+++ b/embedserv/source/inc/servprov.hxx
@@ -34,7 +34,7 @@ class EmbedProviderFactory_Impl;
class EmbedServer_Impl: public cppu::WeakImplHelper<css::lang::XServiceInfo>
{
public:
- EmbedServer_Impl( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &xFactory );
+ EmbedServer_Impl( const css::uno::Reference< css::lang::XMultiServiceFactory > &xFactory );
virtual ~EmbedServer_Impl();
OUString SAL_CALL getImplementationName()
@@ -49,14 +49,14 @@ public:
protected:
CComPtr< EmbedProviderFactory_Impl > m_pOLEFactories[ SUPPORTED_FACTORIES_NUM ];
- ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xFactory;
+ css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory;
};
class EmbedProviderFactory_Impl : public IClassFactory
{
public:
- EmbedProviderFactory_Impl( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xFactory, const GUID* pGuid);
+ EmbedProviderFactory_Impl( const css::uno::Reference< css::lang::XMultiServiceFactory >& xFactory, const GUID* pGuid);
virtual ~EmbedProviderFactory_Impl();
sal_Bool registerClass();
@@ -77,7 +77,7 @@ protected:
GUID m_guid;
DWORD m_factoryHandle;
- ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xFactory;
+ css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory;
};
#endif