summaryrefslogtreecommitdiff
path: root/linguistic/source/iprcache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'linguistic/source/iprcache.cxx')
-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 );
}
}
}