diff options
Diffstat (limited to 'cppuhelper/source/servicemanager.cxx')
-rw-r--r-- | cppuhelper/source/servicemanager.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppuhelper/source/servicemanager.cxx b/cppuhelper/source/servicemanager.cxx index 1fd8bba105c1..e3ddaee00798 100644 --- a/cppuhelper/source/servicemanager.cxx +++ b/cppuhelper/source/servicemanager.cxx @@ -1183,13 +1183,13 @@ cppuhelper::ServiceManager::createContentEnumeration( } } if (impl->factory1.is()) { - factories.push_back(css::uno::makeAny(impl->factory1)); + factories.push_back(css::uno::Any(impl->factory1)); } else if (impl->factory2.is()) { - factories.push_back(css::uno::makeAny(impl->factory2)); + factories.push_back(css::uno::Any(impl->factory2)); } else { css::uno::Reference< css::lang::XSingleComponentFactory > factory( new ImplementationWrapper(this, *i)); - factories.push_back(css::uno::makeAny(factory)); + factories.push_back(css::uno::Any(factory)); } } return new ContentEnumeration(factories); @@ -1221,7 +1221,7 @@ css::uno::Any cppuhelper::ServiceManager::getPropertyValue( PropertyName, static_cast< cppu::OWeakObject * >(this)); } assert(context_.is()); - return css::uno::makeAny(context_); + return css::uno::Any(context_); } void cppuhelper::ServiceManager::addPropertyChangeListener( |