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 edf9deba8a Fix spelling (#295)
edf9deba8a is described below

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

    Fix spelling (#295)
    
    * Fix spelling
    
    * Update ignored words list
---
 .github/linters/codespell.txt                          | 6 ------
 main/filter/source/xslt/export/spreadsheetml/table.xsl | 2 +-
 main/sfx2/source/view/sfxbasecontroller.cxx            | 2 +-
 main/sw/source/filter/inc/fltshell.hxx                 | 4 ++--
 4 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/.github/linters/codespell.txt b/.github/linters/codespell.txt
index 34c25e5d65..f4ab0e106b 100644
--- a/.github/linters/codespell.txt
+++ b/.github/linters/codespell.txt
@@ -1187,7 +1187,6 @@ documets
 documument
 docunment
 doens't
-doen't
 doese
 doesnot
 does'nt
@@ -1217,8 +1216,6 @@ dscrete
 dsplays
 dthe
 dublicat
-dublicate
-dublicates
 dulicate
 dum
 dummp
@@ -3302,7 +3299,6 @@ somes
 somethimes
 somethimg
 somethiong
-someting
 somme
 sommeone
 somthing
@@ -3366,7 +3362,6 @@ standar
 standarized
 standart
 standtard
-stanp
 starnge
 startd
 startet
@@ -3751,7 +3746,6 @@ vaalues
 vai
 vaid
 vailable
-vaild
 vailid
 vakue
 valide
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