diff options
Diffstat (limited to 'include/comphelper/namedvaluecollection.hxx')
-rw-r--r-- | include/comphelper/namedvaluecollection.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/namedvaluecollection.hxx b/include/comphelper/namedvaluecollection.hxx index 21c4bef31d24..33b786437d15 100644 --- a/include/comphelper/namedvaluecollection.hxx +++ b/include/comphelper/namedvaluecollection.hxx @@ -181,7 +181,7 @@ namespace comphelper template < typename VALUE_TYPE > bool put( const OUString& _rValueName, const VALUE_TYPE& _rValue ) { - return impl_put( _rValueName, css::uno::makeAny( _rValue ) ); + return impl_put( _rValueName, css::uno::Any( _rValue ) ); } bool put( const OUString& _rValueName, const css::uno::Any& _rValue ) @@ -280,7 +280,7 @@ namespace comphelper const VALUE_TYPE* pV = aValues.getConstArray(); const sal_Int32 nLen = aValues.getLength(); for( sal_Int32 i = 0; i < nLen; ++i ) - *(pO++) = css::uno::makeAny<VALUE_TYPE>( *(pV++) ); + *(pO++) = css::uno::Any( *(pV++) ); return aWrappedValues; } |