summaryrefslogtreecommitdiff
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
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>
-rw-r--r--dbaccess/source/ui/browser/unodatbr.cxx6
-rw-r--r--dbaccess/source/ui/misc/WCopyTable.cxx16
-rw-r--r--editeng/source/accessibility/AccessibleEditableTextPara.cxx2
-rw-r--r--extensions/source/propctrlr/propcontroller.cxx12
-rw-r--r--extensions/source/update/check/updatecheckconfig.cxx4
-rw-r--r--include/editeng/unotext.hxx4
-rw-r--r--include/svx/unoshprp.hxx2
-rw-r--r--linguistic/source/iprcache.cxx8
-rw-r--r--qadevOOo/tests/java/ifc/style/_ParagraphProperties.java2
-rw-r--r--qadevOOo/tests/java/ifc/text/_NumberingLevel.java2
-rw-r--r--sc/source/ui/unoobj/cellsuno.cxx2
-rw-r--r--sc/source/ui/unoobj/notesuno.cxx2
-rw-r--r--sc/source/ui/unoobj/textuno.cxx2
-rw-r--r--sd/source/core/stlsheet.cxx2
14 files changed, 33 insertions, 33 deletions
diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx
index d4e7ed28acdb..43f084fec020 100644
--- a/dbaccess/source/ui/browser/unodatbr.cxx
+++ b/dbaccess/source/ui/browser/unodatbr.cxx
@@ -483,11 +483,11 @@ bool SbaTableQueryBrowser::InitializeForm( const Reference< XPropertySet > & i_f
OUString(PROPERTY_HAVING_CLAUSE),
OUString(PROPERTY_ORDER)
};
- for (const auto & aTransferPropertie : aTransferProperties)
+ for (const auto & aTransferProperty : aTransferProperties)
{
- if ( !xPSI->hasPropertyByName( aTransferPropertie ) )
+ if ( !xPSI->hasPropertyByName( aTransferProperty ) )
continue;
- aPropertyValues.put( aTransferPropertie, pData->xObjectProperties->getPropertyValue( aTransferPropertie ) );
+ aPropertyValues.put( aTransferProperty, pData->xObjectProperties->getPropertyValue( aTransferProperty ) );
}
std::vector< OUString > aNames( aPropertyValues.getNames() );
diff --git a/dbaccess/source/ui/misc/WCopyTable.cxx b/dbaccess/source/ui/misc/WCopyTable.cxx
index c2d3bab739dd..56341d35f4f1 100644
--- a/dbaccess/source/ui/misc/WCopyTable.cxx
+++ b/dbaccess/source/ui/misc/WCopyTable.cxx
@@ -133,10 +133,10 @@ void ObjectCopySource::copyUISettingsTo( const Reference< XPropertySet >& _rxObj
const OUString aCopyProperties[] = {
OUString(PROPERTY_FONT), OUString(PROPERTY_ROW_HEIGHT), OUString(PROPERTY_TEXTCOLOR),OUString(PROPERTY_TEXTLINECOLOR),OUString(PROPERTY_TEXTEMPHASIS),OUString(PROPERTY_TEXTRELIEF)
};
- for (const auto & aCopyPropertie : aCopyProperties)
+ for (const auto & aCopyProperty : aCopyProperties)
{
- if ( m_xObjectPSI->hasPropertyByName( aCopyPropertie ) )
- _rxObject->setPropertyValue( aCopyPropertie, m_xObject->getPropertyValue( aCopyPropertie ) );
+ if ( m_xObjectPSI->hasPropertyByName( aCopyProperty ) )
+ _rxObject->setPropertyValue( aCopyProperty, m_xObject->getPropertyValue( aCopyProperty ) );
}
}
@@ -155,17 +155,17 @@ void ObjectCopySource::copyFilterAndSortingTo( const Reference< XConnection >& _
OUStringBuffer sStatement = "SELECT * FROM " + sTargetName + " WHERE 0=1";
- for (const std::pair<OUString,OUString> & aPropertie : aProperties)
+ for (const std::pair<OUString,OUString> & aProperty : aProperties)
{
- if ( m_xObjectPSI->hasPropertyByName( aPropertie.first ) )
+ if ( m_xObjectPSI->hasPropertyByName( aProperty.first ) )
{
OUString sFilter;
- m_xObject->getPropertyValue( aPropertie.first ) >>= sFilter;
+ m_xObject->getPropertyValue( aProperty.first ) >>= sFilter;
if ( !sFilter.isEmpty() )
{
- sStatement.append(aPropertie.second);
+ sStatement.append(aProperty.second);
sFilter = sFilter.replaceFirst(sSourceName,sTargetNameTemp);
- _rxObject->setPropertyValue( aPropertie.first, makeAny(sFilter) );
+ _rxObject->setPropertyValue( aProperty.first, makeAny(sFilter) );
sStatement.append(sFilter);
}
}
diff --git a/editeng/source/accessibility/AccessibleEditableTextPara.cxx b/editeng/source/accessibility/AccessibleEditableTextPara.cxx
index 68243e411e7f..b2c672234137 100644
--- a/editeng/source/accessibility/AccessibleEditableTextPara.cxx
+++ b/editeng/source/accessibility/AccessibleEditableTextPara.cxx
@@ -91,7 +91,7 @@ namespace accessibility
SVX_UNOEDIT_OUTLINER_PROPERTIES,
SVX_UNOEDIT_CHAR_PROPERTIES,
SVX_UNOEDIT_PARA_PROPERTIES,
- SVX_UNOEDIT_NUMBERING_PROPERTIE,
+ SVX_UNOEDIT_NUMBERING_PROPERTY,
{ u"TextUserDefinedAttributes", EE_CHAR_XMLATTRIBS, cppu::UnoType<css::container::XNameContainer>::get(), 0, 0},
{ u"ParaUserDefinedAttributes", EE_PARA_XMLATTRIBS, cppu::UnoType<css::container::XNameContainer>::get(), 0, 0},
{ u"", 0, css::uno::Type(), 0, 0 }
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) )
diff --git a/include/editeng/unotext.hxx b/include/editeng/unotext.hxx
index 0c09b4361edc..5b92daf4d8aa 100644
--- a/include/editeng/unotext.hxx
+++ b/include/editeng/unotext.hxx
@@ -64,12 +64,12 @@ struct SfxItemPropertyMapEntry;
#define WID_NUMBERINGSTARTVALUE OWN_ATTR_VALUE_START+3
#define WID_PARAISNUMBERINGRESTART OWN_ATTR_VALUE_START+4
-#define SVX_UNOEDIT_NUMBERING_PROPERTIE \
+#define SVX_UNOEDIT_NUMBERING_PROPERTY \
{u"" UNO_NAME_NUMBERING_RULES, EE_PARA_NUMBULLET, cppu::UnoType<css::container::XIndexReplace>::get(), 0, 0 }, \
{u"" UNO_NAME_NUMBERING, EE_PARA_BULLETSTATE,cppu::UnoType<bool>::get(), 0, 0 }
#define SVX_UNOEDIT_OUTLINER_PROPERTIES \
- SVX_UNOEDIT_NUMBERING_PROPERTIE, \
+ SVX_UNOEDIT_NUMBERING_PROPERTY, \
{u"" UNO_NAME_NUMBERING_LEVEL, WID_NUMLEVEL, ::cppu::UnoType<sal_Int16>::get(), 0, 0 }, \
{u"NumberingStartValue", WID_NUMBERINGSTARTVALUE, ::cppu::UnoType<sal_Int16>::get(), 0, 0 }, \
{u"ParaIsNumberingRestart", WID_PARAISNUMBERINGRESTART, cppu::UnoType<bool>::get(), 0, 0 }
diff --git a/include/svx/unoshprp.hxx b/include/svx/unoshprp.hxx
index 750a245b29d4..93c5faaa3f0c 100644
--- a/include/svx/unoshprp.hxx
+++ b/include/svx/unoshprp.hxx
@@ -325,7 +325,7 @@
SVX_UNOEDIT_PARA_PROPERTIES,
#define TEXT_PROPERTIES \
- SVX_UNOEDIT_NUMBERING_PROPERTIE, \
+ SVX_UNOEDIT_NUMBERING_PROPERTY, \
TEXT_PROPERTIES_DEFAULTS
// { "HasLevels", OWN_ATTR_HASLEVELS, cppu::UnoType<bool>::get(), css::beans::PropertyAttribute::READONLY, 0},
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 );
}
}
}
diff --git a/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java b/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
index 197925994cb8..aa3b173f5225 100644
--- a/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
+++ b/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
@@ -350,7 +350,7 @@ public class _ParagraphProperties extends MultiPropertyTest {
_NumberingLevel numb = new _NumberingLevel((LogWriter)log, tParam, propertyValues);
- boolean result = numb.testPropertieArray();
+ boolean result = numb.testPropertyArray();
tRes.tested("NumberingRules", result);
}
diff --git a/qadevOOo/tests/java/ifc/text/_NumberingLevel.java b/qadevOOo/tests/java/ifc/text/_NumberingLevel.java
index 27e59aabd954..0ef72a656985 100644
--- a/qadevOOo/tests/java/ifc/text/_NumberingLevel.java
+++ b/qadevOOo/tests/java/ifc/text/_NumberingLevel.java
@@ -111,7 +111,7 @@ public class _NumberingLevel {
* are missing the return value is FALSE, else TRUE
* @return returns TRUE if PropertyValue[] is complete, else FALSE
*/
- public boolean testPropertieArray(){
+ public boolean testPropertyArray(){
boolean status = true;
try{
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index bab189c43d15..4c3d7456c2b3 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -841,7 +841,7 @@ static const SfxItemPropertyMapEntry* lcl_GetEditPropertyMap()
SVX_UNOEDIT_CHAR_PROPERTIES,
SVX_UNOEDIT_FONT_PROPERTIES,
SVX_UNOEDIT_PARA_PROPERTIES,
- SVX_UNOEDIT_NUMBERING_PROPERTIE, // for completeness of service ParagraphProperties
+ SVX_UNOEDIT_NUMBERING_PROPERTY, // for completeness of service ParagraphProperties
{u"" SC_UNONAME_TEXTUSER, EE_CHAR_XMLATTRIBS, cppu::UnoType<container::XNameContainer>::get(), 0, 0},
{u"" SC_UNONAME_USERDEF, EE_PARA_XMLATTRIBS, cppu::UnoType<container::XNameContainer>::get(), 0, 0},
{ u"", 0, css::uno::Type(), 0, 0 }
diff --git a/sc/source/ui/unoobj/notesuno.cxx b/sc/source/ui/unoobj/notesuno.cxx
index 11b8049d68fe..f745de7dd0b1 100644
--- a/sc/source/ui/unoobj/notesuno.cxx
+++ b/sc/source/ui/unoobj/notesuno.cxx
@@ -44,7 +44,7 @@ static const SvxItemPropertySet* lcl_GetAnnotationPropertySet()
SVX_UNOEDIT_CHAR_PROPERTIES,
SVX_UNOEDIT_FONT_PROPERTIES,
SVX_UNOEDIT_PARA_PROPERTIES,
- SVX_UNOEDIT_NUMBERING_PROPERTIE, // for completeness of service ParagraphProperties
+ SVX_UNOEDIT_NUMBERING_PROPERTY, // for completeness of service ParagraphProperties
{ u"", 0, css::uno::Type(), 0, 0 }
};
static SvxItemPropertySet aAnnotationPropertySet_Impl( aAnnotationPropertyMap_Impl, SdrObject::GetGlobalDrawObjectItemPool() );
diff --git a/sc/source/ui/unoobj/textuno.cxx b/sc/source/ui/unoobj/textuno.cxx
index 683f85f8cdfc..b590d73d8b92 100644
--- a/sc/source/ui/unoobj/textuno.cxx
+++ b/sc/source/ui/unoobj/textuno.cxx
@@ -57,7 +57,7 @@ static const SvxItemPropertySet * lcl_GetHdFtPropertySet()
SVX_UNOEDIT_CHAR_PROPERTIES,
SVX_UNOEDIT_FONT_PROPERTIES,
SVX_UNOEDIT_PARA_PROPERTIES,
- SVX_UNOEDIT_NUMBERING_PROPERTIE, // for completeness of service ParagraphProperties
+ SVX_UNOEDIT_NUMBERING_PROPERTY, // for completeness of service ParagraphProperties
{ u"", 0, css::uno::Type(), 0, 0 }
};
diff --git a/sd/source/core/stlsheet.cxx b/sd/source/core/stlsheet.cxx
index a7fe40a0a646..67c0758ec4d6 100644
--- a/sd/source/core/stlsheet.cxx
+++ b/sd/source/core/stlsheet.cxx
@@ -92,7 +92,7 @@ static SvxItemPropertySet& GetStylePropertySet()
{ u"DisplayName", WID_STYLE_DISPNAME, ::cppu::UnoType<OUString>::get(), PropertyAttribute::READONLY, 0},
{ u"Hidden", WID_STYLE_HIDDEN, cppu::UnoType<bool>::get(), 0, 0},
- SVX_UNOEDIT_NUMBERING_PROPERTIE,
+ SVX_UNOEDIT_NUMBERING_PROPERTY,
SHADOW_PROPERTIES
LINE_PROPERTIES
LINE_PROPERTIES_START_END