summaryrefslogtreecommitdiffstats
path: root/extensions
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 /extensions
parenttdf#142121 Cell focus rectangle does not use font color (diff)
downloadcore-f0fd4574fff6c91dd6fe53a5dbe1ed2509b616e4.tar.gz
core-f0fd4574fff6c91dd6fe53a5dbe1ed2509b616e4.zip
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 'extensions')
-rw-r--r--extensions/source/propctrlr/propcontroller.cxx12
-rw-r--r--extensions/source/update/check/updatecheckconfig.cxx4
2 files changed, 8 insertions, 8 deletions
diff --git a/extensions/source/propctrlr/propcontroller.cxx b/extensions/source/propctrlr/propcontroller.cxx
index a24384459d7d..92c04c29d533 100644
--- a/extensions/source/propctrlr/propcontroller.cxx
+++ b/extensions/source/propctrlr/propcontroller.cxx
@@ -957,16 +957,16 @@ namespace pcr
// append these properties to our "all properties" array
aProperties.reserve( aProperties.size() + aThisHandlersProperties.size() );
- for (const auto & aThisHandlersPropertie : aThisHandlersProperties)
+ for (const auto & aThisHandlersProperty : aThisHandlersProperties)
{
auto noPrevious = std::none_of(
aProperties.begin(),
aProperties.end(),
- FindPropertyByName( aThisHandlersPropertie.Name )
+ FindPropertyByName( aThisHandlersProperty.Name )
);
if ( noPrevious )
{
- aProperties.push_back( aThisHandlersPropertie );
+ aProperties.push_back( aThisHandlersProperty );
continue;
}
@@ -979,7 +979,7 @@ namespace pcr
// which means it can give it a completely different meaning than the previous
// handler for this property is prepared for.
std::pair< PropertyHandlerMultiRepository::iterator, PropertyHandlerMultiRepository::iterator >
- aDepHandlers = m_aDependencyHandlers.equal_range( aThisHandlersPropertie.Name );
+ aDepHandlers = m_aDependencyHandlers.equal_range( aThisHandlersProperty.Name );
m_aDependencyHandlers.erase( aDepHandlers.first, aDepHandlers.second );
}
@@ -1003,9 +1003,9 @@ namespace pcr
// remember this handler for every of the properties which it is responsible
// for
- for (const auto & aThisHandlersPropertie : aThisHandlersProperties)
+ for (const auto & aThisHandlersProperty : aThisHandlersProperties)
{
- m_aPropertyHandlers[ aThisHandlersPropertie.Name ] = *aHandler;
+ m_aPropertyHandlers[ aThisHandlersProperty.Name ] = *aHandler;
// note that this implies that if two handlers support the same property,
// the latter wins
}
diff --git a/extensions/source/update/check/updatecheckconfig.cxx b/extensions/source/update/check/updatecheckconfig.cxx
index 65c3e800702a..3c5f163b7226 100644
--- a/extensions/source/update/check/updatecheckconfig.cxx
+++ b/extensions/source/update/check/updatecheckconfig.cxx
@@ -407,9 +407,9 @@ UpdateCheckConfig::clearUpdateFound()
{
OUString aName;
- for(const char* aUpdateEntryPropertie : aUpdateEntryProperties)
+ for(const char* aUpdateEntryProperty : aUpdateEntryProperties)
{
- aName = OUString::createFromAscii(aUpdateEntryPropertie);
+ aName = OUString::createFromAscii(aUpdateEntryProperty);
try {
if( m_xContainer->hasByName(aName) )