summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2021-10-09 10:06:41 +0200
committerJulien Nabet <serval2412@yahoo.fr>2021-10-09 11:10:27 +0200
commitf0fd4574fff6c91dd6fe53a5dbe1ed2509b616e4 (patch)
tree8df2c59e10bf59aade05d84386a1348dc0e1ecba /linguistic
parentc307c34a295fbbaf0af91a17440b045133981cc8 (diff)
Typo *ropertie -> *roperty
Change-Id: Id5ae03140ac4fd67bf4940569ac5cd2f15716749 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123306 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/iprcache.cxx8
1 files changed, 4 insertions, 4 deletions
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 );
}
}
}