diff options
author | danielt998 <daniel@fearnley.net> | 2016-02-11 22:07:09 +0000 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2016-02-12 15:29:25 +0000 |
commit | 2b31daf74e33b988c849cb26e88fa7657a4015af (patch) | |
tree | b4385985063c60b7900c63a1a229ef5165dbc12d /stoc | |
parent | 662406b44d16c713c3d42585b57caf46689980f0 (diff) |
tdf#95857 Sort out German plurals ...
Made a start in removing the incorrect 'Infos' German plural
Change-Id: Ie989351a7473fc35b563e63ce6a4fb229093af60
Reviewed-on: https://gerrit.libreoffice.org/22301
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/invocation/invocation.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx index 5d57fd6ff83b..9f2c4c0fc06d 100644 --- a/stoc/source/invocation/invocation.cxx +++ b/stoc/source/invocation/invocation.cxx @@ -972,7 +972,7 @@ void Invocation_Impl::fillInfoForMethod sal_Int32 nParamCount = aParamInfos.getLength(); if( nParamCount > 0 ) { - const ParamInfo* pInfos = aParamInfos.getConstArray(); + const ParamInfo* pInfo = aParamInfos.getConstArray(); rInfo.aParamTypes.realloc( nParamCount ); Type* pParamTypes = rInfo.aParamTypes.getArray(); @@ -981,10 +981,10 @@ void Invocation_Impl::fillInfoForMethod for( sal_Int32 i = 0 ; i < nParamCount ; i++ ) { - Reference< XIdlClass > xParamClass = pInfos[i].aType; + Reference< XIdlClass > xParamClass = pInfo[i].aType; Type aParamType( xParamClass->getTypeClass(), xParamClass->getName() ); pParamTypes[ i ] = aParamType; - pParamModes[ i ] = pInfos[i].aMode; + pParamModes[ i ] = pInfo[i].aMode; } } } |