summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/docbasic.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/doc/docbasic.cxx')
-rw-r--r--sw/source/core/doc/docbasic.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/doc/docbasic.cxx b/sw/source/core/doc/docbasic.cxx
index e0d62e645644..723cd0881f74 100644
--- a/sw/source/core/doc/docbasic.cxx
+++ b/sw/source/core/doc/docbasic.cxx
@@ -40,7 +40,7 @@ static Sequence<Any> *lcl_docbasic_convertArgs( SbxArray& rArgs )
{
Sequence<Any> *pRet = nullptr;
- sal_uInt32 nCount = rArgs.Count32();
+ sal_uInt32 nCount = rArgs.Count();
if( nCount > 1 )
{
nCount--;
@@ -48,7 +48,7 @@ static Sequence<Any> *lcl_docbasic_convertArgs( SbxArray& rArgs )
Any *pUnoArgs = pRet->getArray();
for( sal_uInt32 i=0; i<nCount; i++ )
{
- SbxVariable *pVar = rArgs.Get32( i+1 );
+ SbxVariable* pVar = rArgs.Get(i + 1);
switch( pVar->GetType() )
{
case SbxSTRING: