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 4772a777d4 Fix spelling; fix `ifndef` statement (#437)
4772a777d4 is described below

commit 4772a777d4d7463276afbb9669636e78e1126302
Author: John Bampton <[email protected]>
AuthorDate: Sun Nov 16 05:54:31 2025 +1000

    Fix spelling; fix `ifndef` statement (#437)
    
    * Fix more typos
    
    * Regenerate ignored words list codespell.txt
---
 .github/linters/codespell.txt                              |  2 --
 main/canvas/source/directx/dx_5rm.cxx                      |  2 +-
 main/canvas/source/directx/dx_9rm.cxx                      |  2 +-
 main/cppuhelper/inc/cppuhelper/implementationentry.hxx     | 14 +++++++-------
 .../inc/drawinglayer/primitive3d/baseprimitive3d.hxx       |  2 +-
 main/offapi/com/sun/star/ucb/Content.idl                   |  2 +-
 main/pyuno/demo/hello_world_comp.py                        |  2 +-
 main/pyuno/source/module/uno.py                            |  2 +-
 .../OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java  |  2 +-
 main/sal/osl/unx/process.c                                 |  2 +-
 main/sal/rtl/source/alloc_global.c                         |  6 +++---
 main/sd/source/ui/view/viewshel.cxx                        |  2 +-
 .../textconversiondlgs/chinese_translation_unodialog.hxx   |  2 +-
 main/toolkit/test/accessibility/AccessibleUNOHandler.java  |  2 +-
 main/vcl/inc/vcl/threadex.hxx                              |  4 ++--
 15 files changed, 23 insertions(+), 25 deletions(-)

diff --git a/.github/linters/codespell.txt b/.github/linters/codespell.txt
index 058345e5c2..53206640b9 100644
--- a/.github/linters/codespell.txt
+++ b/.github/linters/codespell.txt
@@ -1339,7 +1339,6 @@ implememetation
 implememntation
 implememtation
 implemenatation
-implemenation
 implementaion
 implementaiton
 implementantions
@@ -1351,7 +1350,6 @@ implementor
 implementors
 implemetation
 implemeted
-implemetnation
 implemets
 implemnt
 implemnted
diff --git a/main/canvas/source/directx/dx_5rm.cxx 
b/main/canvas/source/directx/dx_5rm.cxx
index 1a58e61d31..88d796f742 100644
--- a/main/canvas/source/directx/dx_5rm.cxx
+++ b/main/canvas/source/directx/dx_5rm.cxx
@@ -500,7 +500,7 @@ namespace dxcanvas
                // DXSurface
                
//////////////////////////////////////////////////////////////////////////////////
 
-               /** ISurface implemenation.
+               /** ISurface implementation.
 
                        @attention holds the DXRenderModule via non-refcounted
                        reference! This is safe with current state of affairs, 
since
diff --git a/main/canvas/source/directx/dx_9rm.cxx 
b/main/canvas/source/directx/dx_9rm.cxx
index 18554d0b62..9e685369fc 100644
--- a/main/canvas/source/directx/dx_9rm.cxx
+++ b/main/canvas/source/directx/dx_9rm.cxx
@@ -137,7 +137,7 @@ namespace dxcanvas
                // DXSurface
                
//////////////////////////////////////////////////////////////////////////////////
 
-               /** ISurface implemenation.
+               /** ISurface implementation.
 
                        @attention holds the DXRenderModule via non-refcounted
                        reference! This is safe with current state of affairs, 
since
diff --git a/main/cppuhelper/inc/cppuhelper/implementationentry.hxx 
b/main/cppuhelper/inc/cppuhelper/implementationentry.hxx
index 72e28450c6..c18884f56b 100644
--- a/main/cppuhelper/inc/cppuhelper/implementationentry.hxx
+++ b/main/cppuhelper/inc/cppuhelper/implementationentry.hxx
@@ -20,8 +20,8 @@
  *************************************************************/
 
 
-#ifndef _CPPUHELPER_IMPLEMENATIONENTRY_HXX_
-#define _CPPUHELPER_IMPLEMENATIONENTRY_HXX_
+#ifndef _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_
+#define _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_
 
 #include <cppuhelper/factory.hxx>
 #include "cppuhelper/cppuhelperdllapi.h"
@@ -33,16 +33,16 @@ namespace cppu
  */
 struct ImplementationEntry
 {
-       /** Function, that creates an instance of the implemenation
+       /** Function, that creates an instance of the implementation
         */
        ComponentFactoryFunc create;
 
-       /** Function, that returns the implemenation-name of the implemenation
+       /** Function, that returns the implementation-name of the implementation
           (same as XServiceInfo.getImplementationName() ).
         */
        rtl::OUString ( SAL_CALL * getImplementationName )();
 
-       /** Function, that returns all supported servicenames of the 
implemenation
+       /** Function, that returns all supported servicenames of the 
implementation
           ( same as XServiceInfo.getSupportedServiceNames() ).
        */
        com::sun::star::uno::Sequence< rtl::OUString > ( SAL_CALL * 
getSupportedServiceNames ) ();
@@ -56,7 +56,7 @@ struct ImplementationEntry
                ::com::sun::star::uno::Sequence< ::rtl::OUString > const & 
rServiceNames,
                rtl_ModuleCount * pModCount );
 
-       /** The shared-library module-counter of the implemenation. Maybe 0. 
The module-counter
+       /** The shared-library module-counter of the implementation. Maybe 0. 
The module-counter
                is used during by the createFactory()-function.
        */
        rtl_ModuleCount * moduleCounter;
@@ -77,7 +77,7 @@ struct ImplementationEntry
                               This is a reference to the registry key, into 
which the implementation
                                                   data shall be written to.
        @param entries         Each element of the entries-array must contains 
a function pointer
-                              table for registering an implemenation. The end 
of the array
+                              table for registering an implementation. The end 
of the array
                               must be marked with a 0 entry in the 
create-function.
        @return sal_True, if all implementations could be registered, otherwise 
sal_False.
  */
diff --git a/main/drawinglayer/inc/drawinglayer/primitive3d/baseprimitive3d.hxx 
b/main/drawinglayer/inc/drawinglayer/primitive3d/baseprimitive3d.hxx
index 0d203d0e4d..d672308481 100644
--- a/main/drawinglayer/inc/drawinglayer/primitive3d/baseprimitive3d.hxx
+++ b/main/drawinglayer/inc/drawinglayer/primitive3d/baseprimitive3d.hxx
@@ -122,7 +122,7 @@ namespace drawinglayer
              */
                        virtual Primitive3DSequence SAL_CALL getDecomposition( 
const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue 
>& rViewParameters ) throw ( ::com::sun::star::uno::RuntimeException );
 
-                       /** the getRange default implemenation will use 
getDecomposition to create the range information from merging
+                       /** the getRange default implementation will use 
getDecomposition to create the range information from merging
                            getRange results from the single local 
decomposition primitives.
              */
                        virtual ::com::sun::star::geometry::RealRectangle3D 
SAL_CALL getRange( const ::com::sun::star::uno::Sequence< 
::com::sun::star::beans::PropertyValue >& rViewParameters ) throw ( 
::com::sun::star::uno::RuntimeException );
diff --git a/main/offapi/com/sun/star/ucb/Content.idl 
b/main/offapi/com/sun/star/ucb/Content.idl
index 2d422b184f..e7afd61d6b 100644
--- a/main/offapi/com/sun/star/ucb/Content.idl
+++ b/main/offapi/com/sun/star/ucb/Content.idl
@@ -368,7 +368,7 @@ published service Content
                     <td><type>SearchCommandArgument</type> 
aSearchCommandArg</td>
                     <td>
                         This command searches for subcontents of a content 
matching the
-                        given search criteria. The command will return an 
implemenation
+                        given search criteria. The command will return an 
implementation
                         of service <type>DynamicResultSet</type>.
                     </td>
                 </tr>
diff --git a/main/pyuno/demo/hello_world_comp.py 
b/main/pyuno/demo/hello_world_comp.py
index 56bfd1027e..c87c2aaa19 100644
--- a/main/pyuno/demo/hello_world_comp.py
+++ b/main/pyuno/demo/hello_world_comp.py
@@ -56,6 +56,6 @@ g_ImplementationHelper = unohelper.ImplementationHelper()
 #
 g_ImplementationHelper.addImplementation( \
         HelloWorldJob,                        # UNO object class
-        "org.openoffice.comp.pyuno.demo.HelloWorld", # implemenation name
+        "org.openoffice.comp.pyuno.demo.HelloWorld", # implementation name
         ("com.sun.star.task.Job",),)          # list of implemented services
                                               # (the only service)
diff --git a/main/pyuno/source/module/uno.py b/main/pyuno/source/module/uno.py
index eb2b332213..8b97be4b50 100644
--- a/main/pyuno/source/module/uno.py
+++ b/main/pyuno/source/module/uno.py
@@ -104,7 +104,7 @@ def getCurrentContext():
 
 def setCurrentContext( newContext ):
     """Sets newContext as new uno current context. The newContext must
-    implement the XCurrentContext interface. The implemenation should
+    implement the XCurrentContext interface. The implementation should
     handle the desired properties and delegate unknown properties to the
     old context. Ensure to reset the old one when you leave your stack ...
     see 
http://udk.openoffice.org/common/man/concept/uno_contexts.html#current_context
diff --git 
a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java 
b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java
index b9738cbfd8..928962f325 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java
@@ -833,7 +833,7 @@ public class ODatabaseForm extends TestCase {
         }
 
         /**
-         * Dummy implemetnation. Do nothing, just log
+         * Dummy implementation. Do nothing, just log
          * @param o Ignore.
          */
         public void disposing(EventObject o) {
diff --git a/main/sal/osl/unx/process.c b/main/sal/osl/unx/process.c
index 01f8657c93..5b022d113d 100644
--- a/main/sal/osl/unx/process.c
+++ b/main/sal/osl/unx/process.c
@@ -141,7 +141,7 @@ static oslMutex        ChildListMutex;
  Deprecated
  Old and buggy implementation of osl_searchPath used only by
  osl_psz_executeProcess.
- A new implemenation is in file_path_helper.cxx
+ A new implementation is in file_path_helper.cxx
  *****************************************************************************/
 
 oslProcessError SAL_CALL osl_searchPath_impl(const sal_Char* pszName, const 
sal_Char* pszPath,
diff --git a/main/sal/rtl/source/alloc_global.c 
b/main/sal/rtl/source/alloc_global.c
index b7f15826f9..56dbd36538 100644
--- a/main/sal/rtl/source/alloc_global.c
+++ b/main/sal/rtl/source/alloc_global.c
@@ -193,7 +193,7 @@ rtl_memory_fini (void)
 
 /* ================================================================= *
  *
- * custom allocator implemenation.
+ * custom allocator implementation.
  *
  * ================================================================= */
 
@@ -297,7 +297,7 @@ void * SAL_CALL rtl_reallocateMemory (void * p, sal_Size n) 
SAL_THROW_EXTERN_C()
 
 /* ================================================================= *
  *
- * system allocator implemenation.
+ * system allocator implementation.
  *
  * ================================================================= */
 
@@ -332,7 +332,7 @@ rtl_memory_fini (void)
 
 /* ================================================================= *
  *
- * rtl_(allocate|free)ZeroMemory() implemenation.
+ * rtl_(allocate|free)ZeroMemory() implementation.
  *
  * ================================================================= */
 
diff --git a/main/sd/source/ui/view/viewshel.cxx 
b/main/sd/source/ui/view/viewshel.cxx
index c98004cbfd..b56d9b301d 100644
--- a/main/sd/source/ui/view/viewshel.cxx
+++ b/main/sd/source/ui/view/viewshel.cxx
@@ -1394,7 +1394,7 @@ void ViewShell::ExecReq( SfxRequest& rReq )
 
 
 
-/** This default implemenation returns only an empty reference.  See derived
+/** This default implementation returns only an empty reference.  See derived
     classes for more interesting examples.
 */
 ::com::sun::star::uno::Reference<
diff --git 
a/main/svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.hxx
 
b/main/svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.hxx
index 3af9914364..9e2cedc71a 100644
--- 
a/main/svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.hxx
+++ 
b/main/svx/source/unodialogs/textconversiondlgs/chinese_translation_unodialog.hxx
@@ -44,7 +44,7 @@ namespace textconversiondlgs
 
 It can be created via lang::XMultiComponentFactory::createInstanceWithContext
 with servicename "com.sun.star.linguistic2.ChineseTranslationDialog"
-or implemenation name "com.sun.star.comp.linguistic2.ChineseTranslationDialog"
+or implementation name "com.sun.star.comp.linguistic2.ChineseTranslationDialog"
 
 It can be initialized via the XInitialization interface with the following 
single parameter:
 PropertyValue-Parameter: Name="ParentWindow" Type="awt::XWindow".
diff --git a/main/toolkit/test/accessibility/AccessibleUNOHandler.java 
b/main/toolkit/test/accessibility/AccessibleUNOHandler.java
index 7683d9ff1b..fb55e8e7cc 100644
--- a/main/toolkit/test/accessibility/AccessibleUNOHandler.java
+++ b/main/toolkit/test/accessibility/AccessibleUNOHandler.java
@@ -77,7 +77,7 @@ class AccessibleUNOHandler
         XServiceInfo xServiceInfo;
         switch (nIndex)
         {
-            case 0 : // Implemenation name.
+            case 0 : // Implementation name.
                 xServiceInfo = GetServiceInfo (aParent);
                 aChild = new StringNode ("Implementation name: " +
                     (xServiceInfo!=null ? xServiceInfo.getImplementationName()
diff --git a/main/vcl/inc/vcl/threadex.hxx b/main/vcl/inc/vcl/threadex.hxx
index 7a408ee7c2..4f922c8ada 100644
--- a/main/vcl/inc/vcl/threadex.hxx
+++ b/main/vcl/inc/vcl/threadex.hxx
@@ -201,7 +201,7 @@ private:
 
 /** Makes a copy back reference wrapper to be used for inout parameters.
     Only use for syncExecute(), the returned wrapper relies on its
-    implemenation, i.e. the function object is stored in free store.
+    implementation, i.e. the function object is stored in free store.
     Type T needs to be copy constructable assignable.
 
     @see syncExecute()
@@ -216,7 +216,7 @@ inline detail::copy_back_wrapper<T> inout_by_ref( T & r )
 
 /** Makes a copy back ptr wrapper to be used for inout parameters.
     Only use for syncExecute(), the returned wrapper relies on its
-    implemenation, i.e. the function object is stored in free store.
+    implementation, i.e. the function object is stored in free store.
     Type T needs to be copy constructable assignable.
 
     @see syncExecute()

Reply via email to