Skip to content

Commit

Permalink
Fix spelling (#295)
Browse files Browse the repository at this point in the history
* Fix spelling

* Update ignored words list

(cherry picked from commit edf9deb)
  • Loading branch information
jbampton authored and Pilot-Pirx committed Feb 21, 2025
1 parent e74af31 commit 6b05c35
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main/filter/source/xslt/export/spreadsheetml/table.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -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" />
Expand Down
2 changes: 1 addition & 1 deletion main/sfx2/source/view/sfxbasecontroller.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
4 changes: 2 additions & 2 deletions main/sw/source/filter/inc/fltshell.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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 );
Expand Down

0 comments on commit 6b05c35

Please sign in to comment.