summaryrefslogtreecommitdiffstats
path: root/eventattacher
diff options
context:
space:
mode:
authordanielt998 <daniel@fearnley.net>2016-02-11 22:07:09 +0000
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2016-02-12 15:29:25 +0000
commit2b31daf74e33b988c849cb26e88fa7657a4015af (patch)
treeb4385985063c60b7900c63a1a229ef5165dbc12d /eventattacher
parenttdf#87813: Bugfix for the animations sidebar tab (diff)
downloadcore-2b31daf74e33b988c849cb26e88fa7657a4015af.tar.gz
core-2b31daf74e33b988c849cb26e88fa7657a4015af.zip
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 'eventattacher')
-rw-r--r--eventattacher/source/eventattacher.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/eventattacher/source/eventattacher.cxx b/eventattacher/source/eventattacher.cxx
index 562a46ce085b..8ca0c9fd9c18 100644
--- a/eventattacher/source/eventattacher.cxx
+++ b/eventattacher/source/eventattacher.cxx
@@ -146,10 +146,10 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName,
sal_uInt32 nParamCount = aParamSeq.getLength();
if( nParamCount > 1 )
{
- const ParamInfo* pInfos = aParamSeq.getConstArray();
+ const ParamInfo* pInfo = aParamSeq.getConstArray();
for( sal_uInt32 i = 0 ; i < nParamCount ; i++ )
{
- if( pInfos[ i ].aMode != ParamMode_IN )
+ if( pInfo[ i ].aMode != ParamMode_IN )
{
bApproveFiring = true;
break;