This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new 1928542892 Fix spelling (#439)
1928542892 is described below
commit 19285428922eb95f9cc429ce6a3328e433bd6af3
Author: John Bampton <[email protected]>
AuthorDate: Sun Nov 16 09:01:26 2025 +1000
Fix spelling (#439)
* Fix typos
* Regenerate ignored words list codespell.txt
---
.github/linters/codespell.txt | 2 --
main/chart2/source/inc/OPropertySet.hxx | 4 ++--
main/chart2/source/inc/WrappedPropertySet.hxx | 2 +-
main/cppuhelper/inc/cppuhelper/propshlp.hxx | 6 +++---
.../source/propctrlr/stringrepresentation.cxx | 2 +-
main/offapi/com/sun/star/chart2/DataSeries.idl | 2 +-
main/offapi/com/sun/star/text/MailMerge.idl | 2 +-
main/offapi/com/sun/star/ucb/ContentAction.idl | 4 ++--
main/redland/README | 2 +-
main/sal/textenc/tcvtjp2.tab | 20 ++++++++++----------
main/sd/source/ui/inc/DrawController.hxx | 4 ++--
.../shellextensions/registerextensions.cxx | 2 +-
main/sfx2/source/notify/eventsupplier.cxx | 2 +-
main/solenv/bin/modules/installer/epmfile.pm | 2 +-
main/udkapi/com/sun/star/script/XDefaultProperty.idl | 2 +-
main/writerfilter/source/dmapper/DomainMapper.cxx | 2 +-
main/xmloff/source/transform/PropertyActionsOOo.cxx | 2 +-
17 files changed, 30 insertions(+), 32 deletions(-)
diff --git a/.github/linters/codespell.txt b/.github/linters/codespell.txt
index 9e59bc27a7..d94150d779 100644
--- a/.github/linters/codespell.txt
+++ b/.github/linters/codespell.txt
@@ -1195,7 +1195,6 @@ geometrie
gere
gererate
ges
-getfastproperyvalue
geting
getlael
get's
@@ -2266,7 +2265,6 @@ repesentation
repesented
repesents
repetive
-replacment
replased
reportresouces
repositry
diff --git a/main/chart2/source/inc/OPropertySet.hxx
b/main/chart2/source/inc/OPropertySet.hxx
index 92051fe0a2..01de9c03c7 100644
--- a/main/chart2/source/inc/OPropertySet.hxx
+++ b/main/chart2/source/inc/OPropertySet.hxx
@@ -124,7 +124,7 @@ protected:
const ::com::sun::star::uno::Any& rValue )
throw (::com::sun::star::lang::IllegalArgumentException);
- /** The same as setFastProperyValue; nHandle is always valid.
+ /** The same as setFastPropertyValue; nHandle is always valid.
The changes must not be broadcasted in this method.
@attention
@@ -147,7 +147,7 @@ protected:
throw (::com::sun::star::uno::Exception);
/**
- The same as getFastProperyValue, but return the value through rValue
and
+ The same as getFastPropertyValue, but return the value through
rValue and
nHandle is always valid.
@see ::cppu::OPropertySetHelper
diff --git a/main/chart2/source/inc/WrappedPropertySet.hxx
b/main/chart2/source/inc/WrappedPropertySet.hxx
index 59f1d6696d..716925d52b 100644
--- a/main/chart2/source/inc/WrappedPropertySet.hxx
+++ b/main/chart2/source/inc/WrappedPropertySet.hxx
@@ -126,7 +126,7 @@ protected: //member
tWrappedPropertyMap*
m_pWrappedPropertyMap;//holds all wrapped properties (containing the special
mapping from inner to outer properties)
- //Container for the XProperyChangedListener. The listeners are inserted by
handle.
+ //Container for the XPropertyChangedListener. The listeners are inserted
by handle.
//OMultiTypeInterfaceContainerHelperInt32
m_aBoundListenerContainer;
//Container for the XPropertyVetoableListener. The listeners are
inserted by handle.
diff --git a/main/cppuhelper/inc/cppuhelper/propshlp.hxx
b/main/cppuhelper/inc/cppuhelper/propshlp.hxx
index 827ce46701..01f89188b3 100644
--- a/main/cppuhelper/inc/cppuhelper/propshlp.hxx
+++ b/main/cppuhelper/inc/cppuhelper/propshlp.hxx
@@ -561,7 +561,7 @@ protected:
const ::com::sun::star::uno::Any& rValue )
throw (::com::sun::star::lang::IllegalArgumentException) = 0;
- /** The same as setFastProperyValue; nHandle is always valid.
+ /** The same as setFastPropertyValue; nHandle is always valid.
The changes must not be broadcasted in this method.
The method is implemented in a derived class.
@@ -584,7 +584,7 @@ protected:
const ::com::sun::star::uno::Any& rValue )
throw (::com::sun::star::uno::Exception) = 0;
/**
- The same as getFastProperyValue, but return the value through rValue
and nHandle
+ The same as getFastPropertyValue, but return the value through
rValue and nHandle
is always valid.
The method is not implemented in this class.
*/
@@ -618,7 +618,7 @@ protected:
/** The common data of a broadcaster. Use the mutex, disposing state
and the listener container. */
OBroadcastHelper &rBHelper;
/**
- Container for the XProperyChangedListener. The listeners are
inserted by handle.
+ Container for the XPropertyChangedListener. The listeners are
inserted by handle.
*/
OMultiTypeInterfaceContainerHelperInt32 aBoundLC;
/**
diff --git a/main/extensions/source/propctrlr/stringrepresentation.cxx
b/main/extensions/source/propctrlr/stringrepresentation.cxx
index 57561d8b86..66181b8993 100644
--- a/main/extensions/source/propctrlr/stringrepresentation.cxx
+++ b/main/extensions/source/propctrlr/stringrepresentation.cxx
@@ -137,7 +137,7 @@ private:
/** converts a string into his constant value if it exists, otherwise the
type converter is used.
* \param _rValue the value to be converted
- * \param _ePropertyType the type of the propery to be converted into
+ * \param _ePropertyType the type of the property to be converted into
* \return the converted value
*/
uno::Any convertStringToSimple( const ::rtl::OUString& _rValue,const
uno::TypeClass& _ePropertyType );
diff --git a/main/offapi/com/sun/star/chart2/DataSeries.idl
b/main/offapi/com/sun/star/chart2/DataSeries.idl
index 62dcb5923a..d89edab26b 100644
--- a/main/offapi/com/sun/star/chart2/DataSeries.idl
+++ b/main/offapi/com/sun/star/chart2/DataSeries.idl
@@ -147,7 +147,7 @@ service DataSeries
series.</p>
<p>If the sequence is empty, that means that all data points
- look alike. They are formatted using the propery values set
+ look alike. They are formatted using the property values set
in the data series.</p>
<p>The indexes in this sequence match the indexes used by the
diff --git a/main/offapi/com/sun/star/text/MailMerge.idl
b/main/offapi/com/sun/star/text/MailMerge.idl
index 44ebf75e1f..1611895fa3 100644
--- a/main/offapi/com/sun/star/text/MailMerge.idl
+++ b/main/offapi/com/sun/star/text/MailMerge.idl
@@ -300,7 +300,7 @@ published service MailMerge
//=============================================================================
/** determines that the created mail merge document is sent as body in
HTML format.
- This property is only valid if the propery "SendAsAttachment" is set
to <false/>.
+ This property is only valid if the property "SendAsAttachment" is set
to <false/>.
<p>This property is only evaluated for e-Mail output.</p>
diff --git a/main/offapi/com/sun/star/ucb/ContentAction.idl
b/main/offapi/com/sun/star/ucb/ContentAction.idl
index d751ceea31..7843a8fcce 100644
--- a/main/offapi/com/sun/star/ucb/ContentAction.idl
+++ b/main/offapi/com/sun/star/ucb/ContentAction.idl
@@ -64,8 +64,8 @@ module com { module sun { module star { module ucb {
<tr><td>E1</td><td>The identifier of a content C changes from id1(C) ==
A
to id2(C) == B, denoted as E1(C: A->B). For
example,
this event may occur when content C
processes a
- "setPropertyValues" command changing
its "Title" propery,
- or when afolder that hierarchicaly
contains C changes
+ "setPropertyValues" command changing
its "Title" property,
+ or when a folder that hierarchically
contains C changes
its identity.</td></tr>
<tr><td>E2</td><td>The state of a content C changes from Alive to
Deleted,
denoted as E2(C). For example, this event may
occur when
diff --git a/main/redland/README b/main/redland/README
index 328276d35f..9fb436b304 100644
--- a/main/redland/README
+++ b/main/redland/README
@@ -29,7 +29,7 @@ of general interest:
redland destructor functions don't check if argument is NULL
- redland-1.0.8.patch.storage_hashes_context_serialize_get_statement:
hashes storage: the function to create statements during serialization does
- not fill in the context propery (i.e. context is NULL)
+ not fill in the context property (i.e. context is NULL)
- redland-1.0.8.patch.storage_hashes_list_duplicates:
hashes, list storage: if contexts are enabled, then it is possible to add
duplicate statements
diff --git a/main/sal/textenc/tcvtjp2.tab b/main/sal/textenc/tcvtjp2.tab
index 448b176f78..0a36fd1b0e 100644
--- a/main/sal/textenc/tcvtjp2.tab
+++ b/main/sal/textenc/tcvtjp2.tab
@@ -28,10 +28,10 @@
/* ======================================================================= */
-/* 0x00A2 --> 0x8191 - APPLE_JAPANESE, but I think, this extension is better
than the replacment char */
-/* 0x00A3 --> 0x8192 - APPLE_JAPANESE, but I think, this extension is better
than the replacment char */
-/* 0x00A5 --> 0x005C - APPLE_JAPANESE, but I think, this extension is better
than the replacment char */
-/* 0x00AC --> 0x81CA - APPLE_JAPANESE/SJIS, but I think, this extension is
better than the replacment char */
+/* 0x00A2 --> 0x8191 - APPLE_JAPANESE, but I think, this extension is better
than the replacement char */
+/* 0x00A3 --> 0x8192 - APPLE_JAPANESE, but I think, this extension is better
than the replacement char */
+/* 0x00A5 --> 0x005C - APPLE_JAPANESE, but I think, this extension is better
than the replacement char */
+/* 0x00AC --> 0x81CA - APPLE_JAPANESE/SJIS, but I think, this extension is
better than the replacement char */
static sal_uInt16 const aImplUniToDBCSTab_SJIS_00[] =
{
@@ -146,12 +146,12 @@ static sal_uInt16 const aImplUniToDBCSTab_SJIS_04[] =
/* ----------------------------------------------------------------------- */
-/* 0x2014 --> 0x815C - APPLE_JAPANESE/SJIS, but I think, this extension is
better than the replacment char */
-/* 0x2015 --> 0x815C - MS932, but I think, this extension is better than the
replacment char */
-/* 0x2016 --> 0x8161 - APPLE_JAPANESE/SJIS, but I think, this extension is
better than the replacment char */
+/* 0x2014 --> 0x815C - APPLE_JAPANESE/SJIS, but I think, this extension is
better than the replacement char */
+/* 0x2015 --> 0x815C - MS932, but I think, this extension is better than the
replacement char */
+/* 0x2016 --> 0x8161 - APPLE_JAPANESE/SJIS, but I think, this extension is
better than the replacement char */
/* 0x2026 --> 0x8163 - APPLE_JAPANESE is normally 0x00FF (HORIZONTAL
ELLIPSIS), because in the APPLE import table 0x8183 is this 0x22EF (MIDLINE
HORIZONTAL ELLIPSIS) */
/* but we import this code as 0x2026 */
-/* 0x203E --> 0x8150 - APPLE_JAPANESE, but I think, this extension is better
than the replacment char */
+/* 0x203E --> 0x8150 - APPLE_JAPANESE, but I think, this extension is better
than the replacement char */
/* in SJIS this is 0x7E, but we import
0x7E as 0x7E, so this would be the better way */
static sal_uInt16 const aImplUniToDBCSTab_SJIS_20[] =
@@ -451,8 +451,8 @@ static sal_uInt16 const
aImplUniToDBCSTab_APPLEJAPANESE_27[] =
/* ----------------------------------------------------------------------- */
/* 0x3014 --> 0x8160 - come from SJIS */
-/* 0x301D --> 0x8780 - MS932, but I think, this extension is better than the
replacment char */
-/* 0x301F --> 0x8781 - MS932, but I think, this extension is better than the
replacment char */
+/* 0x301D --> 0x8780 - MS932, but I think, this extension is better than the
replacement char */
+/* 0x301F --> 0x8781 - MS932, but I think, this extension is better than the
replacement char */
static sal_uInt16 const aImplUniToDBCSTab_SJIS_30[] =
{
diff --git a/main/sd/source/ui/inc/DrawController.hxx
b/main/sd/source/ui/inc/DrawController.hxx
index c6b439f2ec..8075546d2b 100644
--- a/main/sd/source/ui/inc/DrawController.hxx
+++ b/main/sd/source/ui/inc/DrawController.hxx
@@ -258,7 +258,7 @@ protected:
::std::vector< ::com::sun::star::beans::Property>& rProperties);
/**
- * The same as getFastProperyValue, but return the value through
+ * The same as getFastPropertyValue, but return the value through
* rValue and nHandle is always valid.
*/
virtual void SAL_CALL getFastPropertyValue(
@@ -286,7 +286,7 @@ protected:
const ::com::sun::star::uno::Any& rValue )
throw (::com::sun::star::lang::IllegalArgumentException);
- /** The same as setFastProperyValue, but no exception is thrown and
nHandle
+ /** The same as setFastPropertyValue, but no exception is thrown and
nHandle
is always valid. You must not broadcast the changes in this method.
*/
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(
diff --git
a/main/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx
b/main/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx
index 061220beb3..511d541beb 100644
---
a/main/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx
+++
b/main/setup_native/source/win32/customactions/shellextensions/registerextensions.cxx
@@ -373,7 +373,7 @@ extern "C" UINT __stdcall RemoveExtensions(MSIHANDLE handle)
{
std::_tstring mystr;
- // Finding the product with the help of the propery FINDPRODUCT,
+ // Finding the product with the help of the property FINDPRODUCT,
// that contains a Windows Registry key, that points to the install
location.
TCHAR szValue[8192];
diff --git a/main/sfx2/source/notify/eventsupplier.cxx
b/main/sfx2/source/notify/eventsupplier.cxx
index 85b2169829..9812481ab8 100644
--- a/main/sfx2/source/notify/eventsupplier.cxx
+++ b/main/sfx2/source/notify/eventsupplier.cxx
@@ -412,7 +412,7 @@ SvxMacro* SfxEvents_Impl::ConvertToMacro( const ANY&
rElement, SfxObjectShell* p
else if ( aProperties[ nIndex ].Name.compareToAscii(
PROP_MACRO_NAME ) == 0 )
aProperties[ nIndex ].Value >>= aMacroName;
else {
- DBG_ERROR("Unknown propery value!");
+ DBG_ERROR("Unknown property value!");
}
nIndex += 1;
}
diff --git a/main/solenv/bin/modules/installer/epmfile.pm
b/main/solenv/bin/modules/installer/epmfile.pm
index a42d64da7d..53fa43dedc 100644
--- a/main/solenv/bin/modules/installer/epmfile.pm
+++ b/main/solenv/bin/modules/installer/epmfile.pm
@@ -61,7 +61,7 @@ sub read_packagemap
{
my $packagemapref =
installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$onepackagemapname,
$includepatharrayref, 0);
- if ( $$packagemapref eq "" ) {
installer::exiter::exit_program("ERROR: Could not find package map file
\"$onepackagemapname\" (propery PACKAGEMAP)!", "read_packagemap"); }
+ if ( $$packagemapref eq "" ) {
installer::exiter::exit_program("ERROR: Could not find package map file
\"$onepackagemapname\" (property PACKAGEMAP)!", "read_packagemap"); }
my $packagemapcontent =
installer::files::read_file($$packagemapref);
diff --git a/main/udkapi/com/sun/star/script/XDefaultProperty.idl
b/main/udkapi/com/sun/star/script/XDefaultProperty.idl
index c3b6a53bfd..10a7a44e11 100644
--- a/main/udkapi/com/sun/star/script/XDefaultProperty.idl
+++ b/main/udkapi/com/sun/star/script/XDefaultProperty.idl
@@ -32,7 +32,7 @@ module com { module sun { module star { module script {
//==============================================================================
/**
An object supporting this interface indicates to interested
- parties or clients the name of the default propery for
+ parties or clients the name of the default property for
this object.
<p>For example where ExampleObject is an instance of an Object that
supports this interface which returns the default property name
diff --git a/main/writerfilter/source/dmapper/DomainMapper.cxx
b/main/writerfilter/source/dmapper/DomainMapper.cxx
index 7a536f1ff4..db29d91ab1 100644
--- a/main/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/main/writerfilter/source/dmapper/DomainMapper.cxx
@@ -2293,7 +2293,7 @@ void DomainMapper::sprmWithProps( Sprm& rSprm,
PropertyMapPtr rContext, SprmType
/* WRITERFILTERSTATUS: done: 50, planned: 0, spent: 1 */
/* WRITERFILTERSTATUS: comment: */
{
- //convert the ListTable entry to a NumberingRules propery and
apply it
+ //convert the ListTable entry to a NumberingRules property and
apply it
StyleSheetPropertyMap* pStyleSheetPropertyMap = NULL;
if ( m_pImpl->IsStyleSheetImport() )
{
diff --git a/main/xmloff/source/transform/PropertyActionsOOo.cxx
b/main/xmloff/source/transform/PropertyActionsOOo.cxx
index 214b13befb..c88e2cc065 100644
--- a/main/xmloff/source/transform/PropertyActionsOOo.cxx
+++ b/main/xmloff/source/transform/PropertyActionsOOo.cxx
@@ -770,7 +770,7 @@ XMLTransformerActionInit
aParagraphPropertyOOoAttrActionTable[] =
{ XML_NAMESPACE_STYLE, XML_FONT_INDEPENDENT_LINE_SPACING,
XML_ATACTION_COPY,
NO_PARAMS },
{ XML_NAMESPACE_STYLE, XML_DEFAULT_OUTLINE_LEVEL, XML_ATACTION_REMOVE,
- NO_PARAMS }, /* i41811: style-default-outline was exported as
propery */
+ NO_PARAMS }, /* i41811: style-default-outline was exported as
property */
{ XML_NAMESPACE_OFFICE, XML_TOKEN_INVALID, XML_ATACTION_EOT, NO_PARAMS }
};