diff --git a/.github/linters/codespell.txt b/.github/linters/codespell.txt index 058345e5c20..53206640b95 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 1a58e61d311..88d796f742d 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 18554d0b625..9e685369fc1 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 72e28450c6a..c18884f56be 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 #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 0d203d0e4d5..d672308481f 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 2d422b184f3..e7afd61d6b9 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 SearchCommandArgument aSearchCommandArg 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 DynamicResultSet. diff --git a/main/pyuno/demo/hello_world_comp.py b/main/pyuno/demo/hello_world_comp.py index 56bfd1027e4..c87c2aaa192 100644 --- a/main/pyuno/demo/hello_world_comp.py +++ b/main/pyuno/demo/hello_world_comp.py @@ -56,6 +56,6 @@ def trigger( self, args ): # 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 eb2b332213c..8b97be4b503 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 b9738cbfd80..928962f3253 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 boolean approveParameter(DatabaseParameterEvent e) { } /** - * 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 01f8657c936..5b022d113d0 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 b7f15826f99..56dbd365388 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 c98004cbfdc..b56d9b301d6 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 3af9914364f..9e2cedc71a9 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 7683d9ff1b3..fb55e8e7cc1 100644 --- a/main/toolkit/test/accessibility/AccessibleUNOHandler.java +++ b/main/toolkit/test/accessibility/AccessibleUNOHandler.java @@ -77,7 +77,7 @@ public AccessibleTreeNode createChild (AccessibleTreeNode aParent, 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 7a408ee7c2c..4f922c8ada1 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 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()