diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-10-09 10:06:41 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-10-09 11:10:27 +0200 |
commit | f0fd4574fff6c91dd6fe53a5dbe1ed2509b616e4 (patch) | |
tree | 8df2c59e10bf59aade05d84386a1348dc0e1ecba /linguistic/source | |
parent | c307c34a295fbbaf0af91a17440b045133981cc8 (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/source')
-rw-r--r-- | linguistic/source/iprcache.cxx | 8 |
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 ); } } } |