From 69bd563f7783a82bb2a18e9eb586b8cb725e2912 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Fri, 23 Jan 2026 05:39:45 +1000 Subject: [PATCH 1/4] Fix typos --- .../java/accessibility/AccessibleObjectFactory.java | 2 +- main/cli_ure/source/uno_bridge/cli_proxy.h | 2 +- main/connectivity/inc/connectivity/CommonTools.hxx | 2 +- main/dbaccess/qa/complex/dbaccess/DatabaseDocument.java | 2 +- main/dtrans/source/win32/mtaole/MtaOleClipb.cxx | 2 +- main/fpicker/source/win32/filepicker/PreviewCtrl.hxx | 2 +- main/framework/inc/helper/statusindicator.hxx | 2 +- main/framework/inc/helper/statusindicatorfactory.hxx | 2 +- main/framework/inc/macros/xserviceinfo.hxx | 2 +- main/framework/inc/threadhelp/itransactionmanager.h | 2 +- main/linguistic/source/dicimp.cxx | 2 +- main/linguistic/source/gciterator.hxx | 2 +- main/offapi/com/sun/star/awt/XLayoutContainer.idl | 2 +- main/offapi/com/sun/star/text/TextMarkupType.idl | 2 +- .../sun/star/ucb/XRemoteContentProviderDistributor.idl | 4 ++-- main/offapi/com/sun/star/ui/XSidebar.idl | 2 +- .../org/apache/openoffice/ooxml/parser/OOXMLParser.java | 2 +- .../OOoRunner/src/main/java/ifc/table/_XTableChart.java | 2 +- .../tests/basic/ifc/sheet/XScenarios/sheet_XScenarios.xba | 2 +- main/sal/inc/rtl/cipher.h | 6 +++--- main/sal/qa/osl/mutex/osl_Mutex.cxx | 8 ++++---- main/salhelper/inc/salhelper/dynload.hxx | 2 +- main/sfx2/qa/complex/sfx2/standalonedocinfo/Test01.java | 2 +- main/sfx2/source/doc/sfxbasemodel.cxx | 6 +++--- main/solenv/bin/modules/RepositoryHelper.pm | 2 +- main/sot/source/unoolestorage/xolesimplestorage.cxx | 2 +- main/xmloff/source/draw/sdxmlexp.cxx | 2 +- 27 files changed, 35 insertions(+), 35 deletions(-) diff --git a/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleObjectFactory.java b/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleObjectFactory.java index e55ab7d8863..91a81ad38bd 100644 --- a/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleObjectFactory.java +++ b/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleObjectFactory.java @@ -526,7 +526,7 @@ public static java.awt.Window getTopWindow(XAccessible xAccessible) { w.setFocusTraversalPolicy(focusTraversalPolicy); w.setVisible(true); - // Make the new window the focused one if it has an initialy focused object set. + // Make the new window the focused one if it has an initially focused object set. java.awt.Component c = ((NativeFrame) w).getInitialComponent(); if (c != null) { postWindowGainedFocus(w); diff --git a/main/cli_ure/source/uno_bridge/cli_proxy.h b/main/cli_ure/source/uno_bridge/cli_proxy.h index 793c5582a0a..23b18be5d2c 100644 --- a/main/cli_ure/source/uno_bridge/cli_proxy.h +++ b/main/cli_ure/source/uno_bridge/cli_proxy.h @@ -267,7 +267,7 @@ struct CliProxy: public uno_Interface If the interface has more then one interface in its inheritance chain, that is Type.GetInterfaces return more then one Type, then the mapping - table is partially initiallized. On the first call the mappings for the + table is partially initialized. On the first call the mappings for the methods of the belonging interface are created. The implementation assumes that the order of interface methods as diff --git a/main/connectivity/inc/connectivity/CommonTools.hxx b/main/connectivity/inc/connectivity/CommonTools.hxx index bb42e5ed75b..acdb4cb3c01 100644 --- a/main/connectivity/inc/connectivity/CommonTools.hxx +++ b/main/connectivity/inc/connectivity/CommonTools.hxx @@ -118,7 +118,7 @@ namespace connectivity }; // ------------------------------------------------------------------------- - // class ORowVector incudes refcounting and initialze himself + // class ORowVector includes refcounting and initialize himself // with at least one element. This first element is reserved for // the bookmark // ------------------------------------------------------------------------- diff --git a/main/dbaccess/qa/complex/dbaccess/DatabaseDocument.java b/main/dbaccess/qa/complex/dbaccess/DatabaseDocument.java index b192ba7d55b..434e9b75dcf 100644 --- a/main/dbaccess/qa/complex/dbaccess/DatabaseDocument.java +++ b/main/dbaccess/qa/complex/dbaccess/DatabaseDocument.java @@ -417,7 +417,7 @@ public void testLoadable() throws Exception, IOException assertEquals("wrong URL after loading the document", documentURL, databaseDoc.getURL()); impl_checkDocumentInitState(databaseDoc, true); - // and while we are here ... initilizing the same document again should not be possible + // and while we are here ... initializing the same document again should not be possible assureException( databaseDoc, XLoadable.class, "initNew", new Object[0], DoubleInitializationException.class ); assureException( databaseDoc, XLoadable.class, "load", new Object[] { new PropertyValue[0] }, diff --git a/main/dtrans/source/win32/mtaole/MtaOleClipb.cxx b/main/dtrans/source/win32/mtaole/MtaOleClipb.cxx index 45aeb5a6622..00a709594f6 100644 --- a/main/dtrans/source/win32/mtaole/MtaOleClipb.cxx +++ b/main/dtrans/source/win32/mtaole/MtaOleClipb.cxx @@ -235,7 +235,7 @@ class CAutoComInit if ( S_OK == m_hResult ) OSL_ENSURE( sal_False, \ - "com was not yet initialzed, the thread was not created using osl_createThread" ); + "com was not yet initialized, the thread was not created using osl_createThread" ); else if ( FAILED( m_hResult ) && !( RPC_E_CHANGED_MODE == m_hResult ) ) OSL_ENSURE( sal_False, \ "com could not be initialized, maybe the thread was not created using osl_createThread" ); diff --git a/main/fpicker/source/win32/filepicker/PreviewCtrl.hxx b/main/fpicker/source/win32/filepicker/PreviewCtrl.hxx index 6ddcb3bfd4f..b7948634a80 100644 --- a/main/fpicker/source/win32/filepicker/PreviewCtrl.hxx +++ b/main/fpicker/source/win32/filepicker/PreviewCtrl.hxx @@ -73,7 +73,7 @@ class CAutoOleInit public: // used to communicate ole - // initialzation failures + // initialization failures class COleInitException { }; CAutoOleInit( ) diff --git a/main/framework/inc/helper/statusindicator.hxx b/main/framework/inc/helper/statusindicator.hxx index 13df73a98b3..4ec6b54fab7 100644 --- a/main/framework/inc/helper/statusindicator.hxx +++ b/main/framework/inc/helper/statusindicator.hxx @@ -70,7 +70,7 @@ namespace framework{ */ class StatusIndicator : public css::lang::XTypeProvider , public css::task::XStatusIndicator - , private ThreadHelpBase // Order of baseclasses is necessary for right initializaton! + , private ThreadHelpBase // Order of baseclasses is necessary for right initialization! , public ::cppu::OWeakObject // => XInterface { //------------------------------------------- diff --git a/main/framework/inc/helper/statusindicatorfactory.hxx b/main/framework/inc/helper/statusindicatorfactory.hxx index e7f04c1f154..122205dcaea 100644 --- a/main/framework/inc/helper/statusindicatorfactory.hxx +++ b/main/framework/inc/helper/statusindicatorfactory.hxx @@ -292,7 +292,7 @@ class StatusIndicatorFactory : public css::lang::XTypeProvider @descr By default we show the parent window automatically if this progress is used. If that isn't a valid operation, the user of this - progress can suppress this feature by initializaing + progress can suppress this feature by initializing us with a special parameter. @seealso initialize() diff --git a/main/framework/inc/macros/xserviceinfo.hxx b/main/framework/inc/macros/xserviceinfo.hxx index 42aa152cb7d..98ba2581fb9 100644 --- a/main/framework/inc/macros/xserviceinfo.hxx +++ b/main/framework/inc/macros/xserviceinfo.hxx @@ -66,7 +66,7 @@ namespace framework{ 1) DECLARE_XSERVICEINFO => use it to declare XServiceInfo in your header 2) DEFINE_XSERVICEINFO_MULTISERVICE( CLASS, XINTERFACECAST, SERVICENAME, IMPLEMENTATIONNAME ) => use it to define XServiceInfo for multi service mode 3) DEFINE_XSERVICEINFO_ONEINSTANCESERVICE( CLASS, XINTERFACECAST, SERVICENAME, IMPLEMENTATIONNAME ) => use it to define XServiceInfo for one instance service mode - 4) DEFINE_INIT_SERVICE( CLASS ) => use it to implement your own impl_initService() method, which is necessary for initializeing object by using his own reference! + 4) DEFINE_INIT_SERVICE( CLASS ) => use it to implement your own impl_initService() method, which is necessary for initializing object by using his own reference! _________________________________________________________________________________________________________________*/ diff --git a/main/framework/inc/threadhelp/itransactionmanager.h b/main/framework/inc/threadhelp/itransactionmanager.h index 40b84f8eac0..139a233e825 100644 --- a/main/framework/inc/threadhelp/itransactionmanager.h +++ b/main/framework/inc/threadhelp/itransactionmanager.h @@ -49,7 +49,7 @@ namespace framework{ If you whish to implement thread safe classes you should use these feature to protect your code against calls at wrong time. e.g. you are not full initialized but somewhere call an interface method (initialize phase means startup time from creating object till - calling specified first method e.g. XInitialization::initialze()!) then you should refuse + calling specified first method e.g. XInitialization::initialize()!) then you should refuse this call. The same for closing/disposing the object! *//*-*************************************************************************************************************/ enum EWorkingMode diff --git a/main/linguistic/source/dicimp.cxx b/main/linguistic/source/dicimp.cxx index cde9566513a..430de382e40 100644 --- a/main/linguistic/source/dicimp.cxx +++ b/main/linguistic/source/dicimp.cxx @@ -384,7 +384,7 @@ sal_uLong DictionaryNeo::loadEntries(const OUString &rMainURL) DBG_ASSERT(isSorted(), "lng : dictionary is not sorted"); - // since this routine should be called only initialy (prior to any + // since this routine should be called only initially (prior to any // modification to be saved) we reset the bIsModified flag here that // was implicitly set by addEntry_Impl bIsModified = sal_False; diff --git a/main/linguistic/source/gciterator.hxx b/main/linguistic/source/gciterator.hxx index 123087e7677..2762d559d53 100644 --- a/main/linguistic/source/gciterator.hxx +++ b/main/linguistic/source/gciterator.hxx @@ -125,7 +125,7 @@ class GrammarCheckingIterator: osl::Condition m_aWakeUpThread; osl::Condition m_aRequestEndThread; - //! beware of initilization order ! + //! beware of initialization order ! struct MyMutex : public rtl::Static< osl::Mutex, MyMutex > {}; // cppu::OInterfaceContainerHelper m_aEventListeners; diff --git a/main/offapi/com/sun/star/awt/XLayoutContainer.idl b/main/offapi/com/sun/star/awt/XLayoutContainer.idl index 1358c19e7ce..db3734cf431 100644 --- a/main/offapi/com/sun/star/awt/XLayoutContainer.idl +++ b/main/offapi/com/sun/star/awt/XLayoutContainer.idl @@ -75,7 +75,7 @@ interface XLayoutContainer: com::sun::star::container::XChild com::sun::star::beans::XPropertySet getChildProperties( [in] com::sun::star::awt::XLayoutConstrains Child ); - /** Set at initilization, this object should be notified when a containers state + /** Set at initialization, this object should be notified when a containers state changes, that may affect its size, to queue a layout re-calculation. */ void setLayoutUnit( [in] com::sun::star::awt::XLayoutUnit Unit ); diff --git a/main/offapi/com/sun/star/text/TextMarkupType.idl b/main/offapi/com/sun/star/text/TextMarkupType.idl index 649b750e62b..5b6cb1c81c1 100644 --- a/main/offapi/com/sun/star/text/TextMarkupType.idl +++ b/main/offapi/com/sun/star/text/TextMarkupType.idl @@ -54,7 +54,7 @@ constants TextMarkupType const long SMARTTAG = 3; /** Markup originates from proofreading - An inivisible markup type used in proofreading API calls. + An invisible markup type used in proofreading API calls. @since OpenOffice 3.0.1 */ const long SENTENCE = 4; diff --git a/main/offapi/com/sun/star/ucb/XRemoteContentProviderDistributor.idl b/main/offapi/com/sun/star/ucb/XRemoteContentProviderDistributor.idl index 55747db562d..523e0bcd21d 100644 --- a/main/offapi/com/sun/star/ucb/XRemoteContentProviderDistributor.idl +++ b/main/offapi/com/sun/star/ucb/XRemoteContentProviderDistributor.idl @@ -45,7 +45,7 @@ module com { module sun { module star { module ucb { //============================================================================= -/** Distribute a content broker to variuos +/** Distribute a content broker to various XRemoteContentProviderAcceptors. @version 1.0 @@ -67,7 +67,7 @@ published interface XRemoteContentProviderDistributor: com::sun::star::uno::XInt @param Identifier An identifier handed to the XRemoteContentProviderAcceptor. - @returns success indicator. Escpecially, if there's already a + @returns success indicator. Especially, if there's already a connection to the given Url, the call will fail, no matter whether that connection uses the same identifier as the given one or not. */ diff --git a/main/offapi/com/sun/star/ui/XSidebar.idl b/main/offapi/com/sun/star/ui/XSidebar.idl index e0992591687..efe04327f26 100644 --- a/main/offapi/com/sun/star/ui/XSidebar.idl +++ b/main/offapi/com/sun/star/ui/XSidebar.idl @@ -36,7 +36,7 @@ interface XSidebar { /** Request layout of the sidebar. Call this method when one of the panels wants to change its size due to - late initilization or different content after a context change. + late initialization or different content after a context change. */ void requestLayout (); } ; diff --git a/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/OOXMLParser.java b/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/OOXMLParser.java index 369f5c3daf4..4fb7905b72d 100644 --- a/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/OOXMLParser.java +++ b/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/OOXMLParser.java @@ -89,7 +89,7 @@ private OOXMLParser ( final ActionContext aActionContext = new ActionContext(); AddSomeActions(aMachine.GetActionManager(), aActionContext); - System.out.printf("initialzed parser in %fs\n", (nEndTime-nStartTime)/1000.0); + System.out.printf("initialized parser in %fs\n", (nEndTime-nStartTime)/1000.0); try { diff --git a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/table/_XTableChart.java b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/table/_XTableChart.java index 7f8c554a80c..ac13c96b850 100644 --- a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/table/_XTableChart.java +++ b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/table/_XTableChart.java @@ -88,7 +88,7 @@ public void _setHasRowHeaders() { /** * Test calls the method and stores the range returned.

* Has OK status if the method returns not - * null valuie.

+ * null value.

*/ public void _getRanges() { the_Ranges = oObj.getRanges(); diff --git a/main/qadevOOo/tests/basic/ifc/sheet/XScenarios/sheet_XScenarios.xba b/main/qadevOOo/tests/basic/ifc/sheet/XScenarios/sheet_XScenarios.xba index 37e2e38317e..fa063007a03 100644 --- a/main/qadevOOo/tests/basic/ifc/sheet/XScenarios/sheet_XScenarios.xba +++ b/main/qadevOOo/tests/basic/ifc/sheet/XScenarios/sheet_XScenarios.xba @@ -53,7 +53,7 @@ On Error Goto ErrHndl Test.StartMethod("addNewByName()") bOK = true nCount = oObj.getCount() - Out.Log("Initialy there are " & nCount & " scenarios.") + Out.Log("Initially there are " & nCount & " scenarios.") oObj.addNewByName("NewScenario", aCRA(), "New comment") Out.Log("After inserting there are " & oObj.getCount() & " scenarios.") bOK = bOK AND oObj.getCount() = nCount + 1 diff --git a/main/sal/inc/rtl/cipher.h b/main/sal/inc/rtl/cipher.h index 380d51a3a51..b0f73c2fb81 100644 --- a/main/sal/inc/rtl/cipher.h +++ b/main/sal/inc/rtl/cipher.h @@ -124,7 +124,7 @@ rtlCipher SAL_CALL rtl_cipher_create ( ) SAL_THROW_EXTERN_C(); -/** Inititialize a cipher for the given direction. +/** Initialize a cipher for the given direction. @see rtlCipherDirection @param Cipher [in] cipher handle. @@ -204,7 +204,7 @@ rtlCipher SAL_CALL rtl_cipher_createBF ( ) SAL_THROW_EXTERN_C(); -/** Inititialize a Blowfish cipher for the given direction. +/** Initialize a Blowfish cipher for the given direction. @see rtl_cipher_init() */ rtlCipherError SAL_CALL rtl_cipher_initBF ( @@ -262,7 +262,7 @@ rtlCipher SAL_CALL rtl_cipher_createARCFOUR ( ) SAL_THROW_EXTERN_C(); -/** Inititialize a RC4 cipher for the given direction. +/** Initialize a RC4 cipher for the given direction. @see rtl_cipher_init() */ rtlCipherError SAL_CALL rtl_cipher_initARCFOUR ( diff --git a/main/sal/qa/osl/mutex/osl_Mutex.cxx b/main/sal/qa/osl/mutex/osl_Mutex.cxx index 3eff8e55ab4..2cb7c8153b3 100644 --- a/main/sal/qa/osl/mutex/osl_Mutex.cxx +++ b/main/sal/qa/osl/mutex/osl_Mutex.cxx @@ -682,7 +682,7 @@ namespace osl_ClearableGuard /// it will return sal_False if the aMutex has not been Guarded. sal_Bool bRes = aMutex.release( ); - ASSERT_TRUE(bRes == sal_True) << "ClearableMutexGuard constructor, test the acquire operation when initilized."; + ASSERT_TRUE(bRes == sal_True) << "ClearableMutexGuard constructor, test the acquire operation when initialized."; } TEST_F(ClearableGuardConstructor, ctor_002 ) @@ -695,7 +695,7 @@ namespace osl_ClearableGuard /// it will return sal_False if the aMutex has not been Guarded. sal_Bool bRes = aMutex.release( ); - ASSERT_TRUE(bRes == sal_True) << "ClearableMutexGuard constructor, test the acquire operation when initilized, we use reference constructor this time."; + ASSERT_TRUE(bRes == sal_True) << "ClearableMutexGuard constructor, test the acquire operation when initialized, we use reference constructor this time."; } class clear : public ::testing::Test @@ -806,7 +806,7 @@ namespace osl_ResettableGuard /// it will return sal_False if the aMutex has not been Guarded. sal_Bool bRes = aMutex.release( ); - ASSERT_TRUE(bRes == sal_True) << "ResettableMutexGuard constructor, test the acquire operation when initilized."; + ASSERT_TRUE(bRes == sal_True) << "ResettableMutexGuard constructor, test the acquire operation when initialized."; } TEST_F(ctor, ctor_002 ) @@ -819,7 +819,7 @@ namespace osl_ResettableGuard /// it will return sal_False if the aMutex has not been Guarded. sal_Bool bRes = aMutex.release( ); - ASSERT_TRUE(bRes == sal_True) << "ResettableMutexGuard constructor, test the acquire operation when initilized, we use reference constructor this time."; + ASSERT_TRUE(bRes == sal_True) << "ResettableMutexGuard constructor, test the acquire operation when initialized, we use reference constructor this time."; } diff --git a/main/salhelper/inc/salhelper/dynload.hxx b/main/salhelper/inc/salhelper/dynload.hxx index f7ed056dfb1..b9d2730c418 100644 --- a/main/salhelper/inc/salhelper/dynload.hxx +++ b/main/salhelper/inc/salhelper/dynload.hxx @@ -76,7 +76,7 @@ protected: /// Destructor, try to unload the library. virtual ~ORealDynamicLoader(); - /// points to the structure with the initialzed API function pointers. + /// points to the structure with the initialized API function pointers. void* m_pApi; /// stores the reference count. sal_uInt32 m_refCount; diff --git a/main/sfx2/qa/complex/sfx2/standalonedocinfo/Test01.java b/main/sfx2/qa/complex/sfx2/standalonedocinfo/Test01.java index 72a61825e38..1aa66dd5ce5 100644 --- a/main/sfx2/qa/complex/sfx2/standalonedocinfo/Test01.java +++ b/main/sfx2/qa/complex/sfx2/standalonedocinfo/Test01.java @@ -59,7 +59,7 @@ public boolean test() { Object oTempFile = m_xMSF.createInstance ( "com.sun.star.io.TempFile" ); XTempFile xTempFile = UnoRuntime.queryInterface(XTempFile.class, oTempFile); - //create a text document and initiallize it + //create a text document and initialize it Object oTextDocument = m_xMSF.createInstance ( "com.sun.star.text.TextDocument" ); XLoadable xLoadable = UnoRuntime.queryInterface(XLoadable.class, oTextDocument); xLoadable.initNew(); diff --git a/main/sfx2/source/doc/sfxbasemodel.cxx b/main/sfx2/source/doc/sfxbasemodel.cxx index e0481e1f8e6..0174cce31b4 100644 --- a/main/sfx2/source/doc/sfxbasemodel.cxx +++ b/main/sfx2/source/doc/sfxbasemodel.cxx @@ -4031,7 +4031,7 @@ css::uno::Reference< css::frame::XController2 > SAL_CALL SfxBaseModel::createDef //============================================================================= namespace sfx { namespace intern { - /** a class which, in its dtor, cleans up variuos objects (well, at the moment only the frame) collected during + /** a class which, in its dtor, cleans up various objects (well, at the moment only the frame) collected during the creation of a document view, unless the creation was successful. */ class SAL_DLLPRIVATE ViewCreationGuard @@ -4433,7 +4433,7 @@ throw (uno::RuntimeException, lang::IllegalArgumentException, } catch (lang::IllegalArgumentException &) { throw; // not initialized } catch (uno::Exception &) { - // UGLY: if it's a RuntimeException, we can't be sure DMA is initialzed + // UGLY: if it's a RuntimeException, we can't be sure DMA is initialized m_pData->m_xDocumentMetadata = xDMA; throw; } @@ -4478,7 +4478,7 @@ throw (uno::RuntimeException, lang::IllegalArgumentException, } catch (lang::IllegalArgumentException &) { throw; // not initialized } catch (uno::Exception &) { - // UGLY: if it's a RuntimeException, we can't be sure DMA is initialzed + // UGLY: if it's a RuntimeException, we can't be sure DMA is initialized m_pData->m_xDocumentMetadata = xDMA; throw; } diff --git a/main/solenv/bin/modules/RepositoryHelper.pm b/main/solenv/bin/modules/RepositoryHelper.pm index 134bece83c9..4d11588344d 100644 --- a/main/solenv/bin/modules/RepositoryHelper.pm +++ b/main/solenv/bin/modules/RepositoryHelper.pm @@ -186,7 +186,7 @@ Returns the repository root, retrieved by SCM methods or on educated guess... RepositoryHelper::get_initial_directory() -Returns full path to the initialistion directory. +Returns full path to the initialization directory. =head2 EXPORT diff --git a/main/sot/source/unoolestorage/xolesimplestorage.cxx b/main/sot/source/unoolestorage/xolesimplestorage.cxx index 0f76230a90c..436f61aac67 100644 --- a/main/sot/source/unoolestorage/xolesimplestorage.cxx +++ b/main/sot/source/unoolestorage/xolesimplestorage.cxx @@ -220,7 +220,7 @@ void SAL_CALL OLESimpleStorage::initialize( const uno::Sequence< uno::Any >& aAr uno::RuntimeException) { if ( m_pStream || m_pStorage ) - throw io::IOException(); // TODO: already initilized + throw io::IOException(); // TODO: already initialized sal_Int32 nArgNum = aArguments.getLength(); OSL_ENSURE( nArgNum >= 1 && nArgNum <= 2, "Wrong parameter number" ); diff --git a/main/xmloff/source/draw/sdxmlexp.cxx b/main/xmloff/source/draw/sdxmlexp.cxx index bed5262b655..4ac9276ebdb 100644 --- a/main/xmloff/source/draw/sdxmlexp.cxx +++ b/main/xmloff/source/draw/sdxmlexp.cxx @@ -254,7 +254,7 @@ ImpXMLAutoLayoutInfo::ImpXMLAutoLayoutInfo(sal_uInt16 nTyp, ImpXMLEXPPageMasterI : mnType(nTyp), mpPageMasterInfo(pInf) { - // create full info (initialze with typical values) + // create full info (initialize with typical values) Point aPagePos(0,0); Size aPageSize(28000, 21000); Size aPageInnerSize(28000, 21000); From 42368e4d6d35aeee2c437dd315a0c26a4471253a Mon Sep 17 00:00:00 2001 From: John Bampton Date: Fri, 23 Jan 2026 05:40:10 +1000 Subject: [PATCH 2/4] Regenerate ignored words list codespell.txt --- .github/linters/codespell.txt | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/linters/codespell.txt b/.github/linters/codespell.txt index 4c5ecc87ba6..e716c36bf8a 100644 --- a/.github/linters/codespell.txt +++ b/.github/linters/codespell.txt @@ -1368,23 +1368,8 @@ ininity initiales initialiase initialisiert -initialistion -initializaing -initializaton -initializeing initializong -initiallize -initiallized -initialy -initialzation -initialze -initialzed -initilization -initilized -initilizing -inititialize inituialization -inivisible inizialize inizializes inlcuded @@ -2782,7 +2767,6 @@ vailable valide valie valu -valuie valus vanishs variabel @@ -2791,7 +2775,6 @@ variablen varian variante varibale -variuos vas vaue vefiry From e98c8a9edc637f5038c88c1c4dd95ee529c2e080 Mon Sep 17 00:00:00 2001 From: Matthias Seidel Date: Thu, 22 Jan 2026 21:07:17 +0100 Subject: [PATCH 3/4] Update cli_proxy.h --- main/cli_ure/source/uno_bridge/cli_proxy.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main/cli_ure/source/uno_bridge/cli_proxy.h b/main/cli_ure/source/uno_bridge/cli_proxy.h index 23b18be5d2c..9d8e2470da9 100644 --- a/main/cli_ure/source/uno_bridge/cli_proxy.h +++ b/main/cli_ure/source/uno_bridge/cli_proxy.h @@ -195,7 +195,7 @@ struct CliProxy: public uno_Interface The array is completely initialized in the constructor of this object. - When the uno_DispatchMethod is called for this proxy then it receives + When the uno_DispatchMethod is called for this proxy it receives a typelib_TypeDescription of the member which is either an attribute (setter or getter) or method. After determining the position of the method within the UNO interface one can use the position to obtain the @@ -208,7 +208,7 @@ struct CliProxy: public uno_Interface /** This array is similar to m_arMethodInfos but it contains the MethodInfo objects of the interface (not the object). When a call is made from uno - to cli then the uno method name is compared to the cli method name. The + to cli the uno method name is compared to the cli method name. The cli method name can be obtained from the MethodInfo object in this array. The name of the actual implemented method may not be the same as the interface method. @@ -249,7 +249,7 @@ struct CliProxy: public uno_Interface interface and all inherited interfaces. At index null is the first method of the base interface and at the last position is the last method of the furthest derived interface. - If a UNO call is received then one can determine the position of the + If a UNO call is received one can determine the position of the method (or getter or setter for an attribute) from the passed type information. The position minus 3 (there is no XInterface in the cli mapping) corresponds to the index of the cli interface method in the @@ -265,8 +265,8 @@ struct CliProxy: public uno_Interface first call. In all ensuing calls the MethodInfo object is immediately retrieved through the mapping table. - If the interface has more then one interface in its inheritance chain, - that is Type.GetInterfaces return more then one Type, then the mapping + If the interface has more than one interface in its inheritance chain, + that is Type.GetInterfaces returns more than one Type, then the mapping table is partially initialized. On the first call the mappings for the methods of the belonging interface are created. From a8588809bf3b4b1e762987d7462ad8a09af8024b Mon Sep 17 00:00:00 2001 From: Matthias Seidel Date: Thu, 22 Jan 2026 21:13:10 +0100 Subject: [PATCH 4/4] Update cli_proxy.h --- main/cli_ure/source/uno_bridge/cli_proxy.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/cli_ure/source/uno_bridge/cli_proxy.h b/main/cli_ure/source/uno_bridge/cli_proxy.h index 9d8e2470da9..b60133ae29d 100644 --- a/main/cli_ure/source/uno_bridge/cli_proxy.h +++ b/main/cli_ure/source/uno_bridge/cli_proxy.h @@ -195,7 +195,7 @@ struct CliProxy: public uno_Interface The array is completely initialized in the constructor of this object. - When the uno_DispatchMethod is called for this proxy it receives + When the uno_DispatchMethod is called for this proxy then it receives a typelib_TypeDescription of the member which is either an attribute (setter or getter) or method. After determining the position of the method within the UNO interface one can use the position to obtain the @@ -208,7 +208,7 @@ struct CliProxy: public uno_Interface /** This array is similar to m_arMethodInfos but it contains the MethodInfo objects of the interface (not the object). When a call is made from uno - to cli the uno method name is compared to the cli method name. The + to cli then the uno method name is compared to the cli method name. The cli method name can be obtained from the MethodInfo object in this array. The name of the actual implemented method may not be the same as the interface method. @@ -249,7 +249,7 @@ struct CliProxy: public uno_Interface interface and all inherited interfaces. At index null is the first method of the base interface and at the last position is the last method of the furthest derived interface. - If a UNO call is received one can determine the position of the + If a UNO call is received then one can determine the position of the method (or getter or setter for an attribute) from the passed type information. The position minus 3 (there is no XInterface in the cli mapping) corresponds to the index of the cli interface method in the