summaryrefslogtreecommitdiff
path: root/extensions/source/inc/componentmodule.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/inc/componentmodule.hxx')
-rw-r--r--extensions/source/inc/componentmodule.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/extensions/source/inc/componentmodule.hxx b/extensions/source/inc/componentmodule.hxx
index 3515ef45b9dd..162125f357d6 100644
--- a/extensions/source/inc/componentmodule.hxx
+++ b/extensions/source/inc/componentmodule.hxx
@@ -44,12 +44,12 @@ namespace COMPMOD_NAMESPACE
{
-typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > (SAL_CALL *FactoryInstantiation)
+typedef css::uno::Reference< css::lang::XSingleServiceFactory > (SAL_CALL *FactoryInstantiation)
(
- const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rServiceManager,
+ const css::uno::Reference< css::lang::XMultiServiceFactory >& _rServiceManager,
const OUString & _rComponentName,
::cppu::ComponentInstantiation _pCreateFunction,
- const ::com::sun::star::uno::Sequence< OUString > & _rServiceNames,
+ const css::uno::Sequence< OUString > & _rServiceNames,
rtl_ModuleCount*
);
@@ -69,13 +69,13 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService
static OString s_sResPrefix;
// auto registration administration
- static ::com::sun::star::uno::Sequence< OUString >*
+ static css::uno::Sequence< OUString >*
s_pImplementationNames;
- static ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< OUString > >*
+ static css::uno::Sequence< css::uno::Sequence< OUString > >*
s_pSupportedServices;
- static ::com::sun::star::uno::Sequence< sal_Int64 >*
+ static css::uno::Sequence< sal_Int64 >*
s_pCreationFunctionPointers;
- static ::com::sun::star::uno::Sequence< sal_Int64 >*
+ static css::uno::Sequence< sal_Int64 >*
s_pFactoryFunctionPointers;
public:
@@ -98,7 +98,7 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService
*/
static void registerComponent(
const OUString& _rImplementationName,
- const ::com::sun::star::uno::Sequence< OUString >& _rServiceNames,
+ const css::uno::Sequence< OUString >& _rServiceNames,
::cppu::ComponentInstantiation _pCreateFunction,
FactoryInstantiation _pFactoryFunction);
@@ -118,9 +118,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService
@return
the XInterface access to a factory for the component
*/
- static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > getComponentFactory(
+ static css::uno::Reference< css::uno::XInterface > getComponentFactory(
const OUString& _rImplementationName,
- const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxServiceManager
+ const css::uno::Reference< css::lang::XMultiServiceFactory >& _rxServiceManager
);
protected:
@@ -162,9 +162,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService
<p>Assumed that the template argument has the three methods
<ul>
<li><code>static OUString getImplementationName_Static()</code><li/>
- <li><code>static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static()</code><li/>
- <li><code>static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
- Create(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&)</code>
+ <li><code>static css::uno::Sequence< OUString > getSupportedServiceNames_Static()</code><li/>
+ <li><code>static css::uno::Reference< css::uno::XInterface >
+ Create(const css::uno::Reference< css::lang::XMultiServiceFactory >&)</code>
</li>
<ul/>
the instantiation of this object will automatically register the class via <method>OModule::registerComponent</method>.
@@ -201,9 +201,9 @@ typedef ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleService
<p>Assumed that the template argument has the three methods
<ul>
<li><code>static OUString getImplementationName_Static()</code><li/>
- <li><code>static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static()</code><li/>
- <li><code>static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
- Create(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&)</code>
+ <li><code>static css::uno::Sequence< OUString > getSupportedServiceNames_Static()</code><li/>
+ <li><code>static css::uno::Reference< css::uno::XInterface >
+ Create(const css::uno::Reference< css::lang::XMultiServiceFactory >&)</code>
</li>
<ul/>
the instantiation of this object will automatically register the class via <method>OModule::registerComponent</method>.