summaryrefslogtreecommitdiff
path: root/stoc/source/servicemanager/servicemanager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/source/servicemanager/servicemanager.cxx')
-rw-r--r--stoc/source/servicemanager/servicemanager.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/source/servicemanager/servicemanager.cxx b/stoc/source/servicemanager/servicemanager.cxx
index 80746280e0b2..a3aaee6f7eaf 100644
--- a/stoc/source/servicemanager/servicemanager.cxx
+++ b/stoc/source/servicemanager/servicemanager.cxx
@@ -185,7 +185,7 @@ Any ServiceEnumeration_Impl::nextElement()
if( nIt == aFactories.getLength() )
throw NoSuchElementException();
- return Any( &aFactories.getConstArray()[nIt++], ::getCppuType( (const Reference<XInterface > *)0 ) );
+ return Any( &aFactories.getConstArray()[nIt++], cppu::UnoType<XInterface>::get());
}
@@ -282,7 +282,7 @@ Any ImplementationEnumeration_Impl::nextElement()
if( aIt == aImplementationMap.end() )
throw NoSuchElementException();
- Any ret( &(*aIt), ::getCppuType( (const Reference<XInterface > *)0 ) );
+ Any ret( &(*aIt), cppu::UnoType<XInterface>::get());
++aIt;
return ret;
}
@@ -350,7 +350,7 @@ void OServiceManager_Listener::disposing(const EventObject & rEvt )
{
try
{
- x->remove( Any( &rEvt.Source, ::getCppuType( (const Reference<XInterface > *)0 ) ) );
+ x->remove( Any( &rEvt.Source, cppu::UnoType<XInterface>::get()) );
}
catch( const IllegalArgumentException & )
{
@@ -1144,7 +1144,7 @@ Type OServiceManager::getElementType()
throw(css::uno::RuntimeException, std::exception)
{
check_undisposed();
- return ::getCppuType( (const Reference< XInterface > *)0 );
+ return cppu::UnoType<XInterface>::get();
}
// XElementAccess