summaryrefslogtreecommitdiff
path: root/embedserv/source/inc/servprov.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-29 15:21:35 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-01 08:01:49 +0000
commit6a93b970c5e7e0bd113674fa5b2286edf7c1675a (patch)
treed78c5af293ec5cab325d4f88082e3efa54dd8f49 /embedserv/source/inc/servprov.hxx
parent7756a9581d531d9353dc72675f62d17c2b314170 (diff)
com::sun::star->css in embedserv/
Change-Id: Iaf1e30ae7dc9710a16a031ea623d531e9e65a6a5 Reviewed-on: https://gerrit.libreoffice.org/19025 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
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