From f0fd4574fff6c91dd6fe53a5dbe1ed2509b616e4 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 9 Oct 2021 10:06:41 +0200 Subject: Typo *ropertie -> *roperty Change-Id: Id5ae03140ac4fd67bf4940569ac5cd2f15716749 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123306 Tested-by: Jenkins Reviewed-by: Julien Nabet --- linguistic/source/iprcache.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'linguistic/source') diff --git a/linguistic/source/iprcache.cxx b/linguistic/source/iprcache.cxx index 89db6246f883..2b82e5684d83 100644 --- a/linguistic/source/iprcache.cxx +++ b/linguistic/source/iprcache.cxx @@ -59,10 +59,10 @@ static void lcl_AddAsPropertyChangeListener( { if (xListener.is() && rPropSet.is()) { - for (auto& aFlushPropertie : aFlushProperties) + for (auto& aFlushProperty : aFlushProperties) { rPropSet->addPropertyChangeListener( - aFlushPropertie.aPropName, xListener ); + aFlushProperty.aPropName, xListener ); } } } @@ -74,10 +74,10 @@ static void lcl_RemoveAsPropertyChangeListener( { if (xListener.is() && rPropSet.is()) { - for (auto& aFlushPropertie : aFlushProperties) + for (auto& aFlushProperty : aFlushProperties) { rPropSet->removePropertyChangeListener( - aFlushPropertie.aPropName, xListener ); + aFlushProperty.aPropName, xListener ); } } } -- cgit