summaryrefslogtreecommitdiff
path: root/basic/source/runtime/comenumwrapper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/comenumwrapper.cxx')
-rw-r--r--basic/source/runtime/comenumwrapper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/runtime/comenumwrapper.cxx b/basic/source/runtime/comenumwrapper.cxx
index 24e90d960ed1..eefff5d46645 100644
--- a/basic/source/runtime/comenumwrapper.cxx
+++ b/basic/source/runtime/comenumwrapper.cxx
@@ -31,7 +31,7 @@ sal_Bool SAL_CALL ComEnumerationWrapper::hasMoreElements()
if ( m_xInvocation.is() )
{
sal_Int32 nLength = 0;
- bResult = ( ( m_xInvocation->getValue( OUString("length" ) ) >>= nLength ) && nLength > m_nCurInd );
+ bResult = ( ( m_xInvocation->getValue( "length" ) >>= nLength ) && nLength > m_nCurInd );
}
}
catch(const uno::Exception& )
@@ -55,7 +55,7 @@ uno::Any SAL_CALL ComEnumerationWrapper::nextElement()
aArgs[0] <<= m_nCurInd++;
- return m_xInvocation->invoke( OUString("item"),
+ return m_xInvocation->invoke( "item",
aArgs,
aNamedParamIndex,
aNamedParam );