From e036d4b706685b995a497808e357b9fd2eb9d965 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 2 Oct 2013 21:56:10 +0300 Subject: Spell "indices" correctly Change-Id: I63b1de195bf2f3f8bfd185181f48b1520cdd849f --- extensions/source/ole/unoconversionutilities.hxx | 2 +- extensions/test/ole/cpnt/cpnt.cxx | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'extensions') diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index 46db5c9db7f4..918899613194 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -1069,7 +1069,7 @@ SAFEARRAY* UnoConversionUtilities::createUnoSequenceWrapper(const Any& rSeq, uno_Sequence * pMultiSeq= *(uno_Sequence* const*) rSeq.getValue(); sal_Int32 dimsSeq= dims - 1; - // arDimSeqIndizes contains the current index of a block of data. + // arDimSeqIndices contains the current index of a block of data. // E.g. Sequence> , the index would refer to Sequence // In this case arDimSeqIndices would have the size 1. That is the elements are not counted // but the Sequences that contain those elements. diff --git a/extensions/test/ole/cpnt/cpnt.cxx b/extensions/test/ole/cpnt/cpnt.cxx index ae4604b42e6c..e938b87b79f3 100644 --- a/extensions/test/ole/cpnt/cpnt.cxx +++ b/extensions/test/ole/cpnt/cpnt.cxx @@ -1732,9 +1732,9 @@ void SAL_CALL OComponent::testInterface( const Reference< XCallback >& xCallbac Reference xIntCallback= oleFact->createInstance(L"XCallback_Impl.Callback"); Reference xInv( xIntCallback, UNO_QUERY); - Sequence seqIndizes; + Sequence seqIndices; Sequence seqOutParams; - xInv->invoke( OUString( L"outValuesAll"), Sequence(), seqIndizes, seqOutParams); + xInv->invoke( OUString( L"outValuesAll"), Sequence(), seqIndices, seqOutParams); if( seqOutParams.getLength() == 12) { @@ -1776,7 +1776,7 @@ void SAL_CALL OComponent::testInterface( const Reference< XCallback >& xCallbac Reference xIntCallback= oleFact->createInstance(L"XCallback_Impl.Callback"); Reference xInv( xIntCallback, UNO_QUERY); - Sequence seqIndizes; + Sequence seqIndices; Sequence seqOutParams; @@ -1829,7 +1829,7 @@ void SAL_CALL OComponent::testInterface( const Reference< XCallback >& xCallbac // Sequence params( arAny, 13); - xInv->invoke( OUString( L"inoutValuesAll"), params, seqIndizes, seqOutParams); + xInv->invoke( OUString( L"inoutValuesAll"), params, seqIndices, seqOutParams); if( seqOutParams.getLength() == 12) { @@ -1871,7 +1871,7 @@ void SAL_CALL OComponent::testInterface( const Reference< XCallback >& xCallbac Reference xIntCallback= oleFact->createInstance(L"XCallback_Impl.Callback"); Reference xInv( xIntCallback, UNO_QUERY); - Sequence seqIndizes; + Sequence seqIndices; Sequence seqOutParams; Any arAny[3]; @@ -1882,7 +1882,7 @@ void SAL_CALL OComponent::testInterface( const Reference< XCallback >& xCallbac OUString aString(L" a string parameter"); arAny[2] <<= aString; - xInv->invoke( OUString( L"inValues"), Sequence(arAny,3), seqIndizes, seqOutParams); + xInv->invoke( OUString( L"inValues"), Sequence(arAny,3), seqIndices, seqOutParams); break; } -- cgit