This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
     new 6b05c3506d Fix spelling (#295)
6b05c3506d is described below

commit 6b05c3506dbf133ad67a9e256f90c0ace8030646
Author: John Bampton <[email protected]>
AuthorDate: Fri Feb 21 22:40:08 2025 +1000

    Fix spelling (#295)
    
    * Fix spelling
    
    * Update ignored words list
    
    (cherry picked from commit edf9deba8aed920907caa0090695f3d79e045f0c)
---
 main/filter/source/xslt/export/spreadsheetml/table.xsl | 2 +-
 main/sfx2/source/view/sfxbasecontroller.cxx            | 2 +-
 main/sw/source/filter/inc/fltshell.hxx                 | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/main/filter/source/xslt/export/spreadsheetml/table.xsl 
b/main/filter/source/xslt/export/spreadsheetml/table.xsl
index e2accc359f..4430a9fcbe 100644
--- a/main/filter/source/xslt/export/spreadsheetml/table.xsl
+++ b/main/filter/source/xslt/export/spreadsheetml/table.xsl
@@ -227,7 +227,7 @@
 
 
        <!-- current node is a table:table-column -->
-       <!-- dublicates column elements in case of column-repeated attribute  
-->
+       <!-- duplicates column elements in case of column-repeated attribute  
-->
        <xsl:template name="repeat-adding-table-column">
                <xsl:param name="table:table-column" />
                <xsl:param name="numberColumnsRepeated" />
diff --git a/main/sfx2/source/view/sfxbasecontroller.cxx 
b/main/sfx2/source/view/sfxbasecontroller.cxx
index 908e07419a..71a10eaecb 100644
--- a/main/sfx2/source/view/sfxbasecontroller.cxx
+++ b/main/sfx2/source/view/sfxbasecontroller.cxx
@@ -668,7 +668,7 @@ sal_Bool SAL_CALL SfxBaseController::suspend( sal_Bool 
bSuspend ) throw( ::com::
 {
        ::vos::OGuard aGuard( Application::GetSolarMutex() );
 
-       // ignore dublicate calls, which doesn't change anything real
+       // ignore duplicate calls, which doesn't change anything real
        if (bSuspend == m_pData->m_bSuspendState)
           return sal_True;
 
diff --git a/main/sw/source/filter/inc/fltshell.hxx 
b/main/sw/source/filter/inc/fltshell.hxx
index a37f64b9a1..9f3ecd897e 100644
--- a/main/sw/source/filter/inc/fltshell.hxx
+++ b/main/sw/source/filter/inc/fltshell.hxx
@@ -598,7 +598,7 @@ public:
        void BeginStyle(sal_uInt16 nUserCode, RES_POOL_COLLFMT_TYPE aType)
        {
                ASSERT(nUserCode<sizeof(pColls)/sizeof(*pColls), "code out of 
bounds");
-               ASSERT(pColls[nUserCode] == NULL, "user codes dublicate");
+               ASSERT(pColls[nUserCode] == NULL, "user codes duplicate");
                if (eSubMode == Style)
                        EndStyle();
                pOut = pColls[nUserCode] = new SwFltFormatCollection(GetDoc(), 
aType);
@@ -608,7 +608,7 @@ public:
        void BeginStyle( sal_uInt16 nUserCode, const String& rName )
        {
                ASSERT(nUserCode<sizeof(pColls)/sizeof(*pColls), "code out of 
bounds");
-               ASSERT(pColls[nUserCode] == NULL, "user codes dublicate");
+               ASSERT(pColls[nUserCode] == NULL, "user codes duplicate");
                if (eSubMode == Style)
                        EndStyle();
                pOut = pColls[nUserCode] = new SwFltFormatCollection(GetDoc(), 
rName );

Reply via email to