sc/source/filter/html/htmlpars.cxx |    4 ++--
 sc/source/filter/inc/htmlpars.hxx  |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 585d1728bef140d6ee5e030777ade6701bcb811c
Author:     Xisco Fauli <[email protected]>
AuthorDate: Fri Jan 23 11:48:14 2026 +0100
Commit:     Xisco Fauli <[email protected]>
CommitDate: Fri Jan 23 15:12:14 2026 +0100

    sc: drop default parameter in SkipLocked
    
    it's only used once
    
    Change-Id: I4ca2c768b4bb8535b8177532ad4ce72021e951af
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197936
    Reviewed-by: Xisco Fauli <[email protected]>
    Tested-by: Jenkins

diff --git a/sc/source/filter/html/htmlpars.cxx 
b/sc/source/filter/html/htmlpars.cxx
index bc4f128d8277..b74f90f193cd 100644
--- a/sc/source/filter/html/htmlpars.cxx
+++ b/sc/source/filter/html/htmlpars.cxx
@@ -692,7 +692,7 @@ void ScHTMLLayoutParser::Adjust()
         // Real column
         (void)SeekOffset( &maColOffset, pE->nOffset, &pE->nCol, 
nOffsetTolerance );
         SCCOL nColBeforeSkip = pE->nCol;
-        SkipLocked(pE.get(), false);
+        SkipLocked(pE.get(), /*bJoin*/ false);
         if ( pE->nCol != nColBeforeSkip )
         {
             size_t nCount = maColOffset.size();
@@ -918,7 +918,7 @@ void ScHTMLLayoutParser::Colonize( ScEEParseEntry* pE )
     if ( pE->nRow == SCROW_MAX )
         pE->nRow = nRowCnt;
     SCCOL nCol = pE->nCol;
-    SkipLocked( pE ); // Change of columns to the right
+    SkipLocked( pE, /*bJoin*/ true ); // Change of columns to the right
 
     if ( nCol < pE->nCol )
     {   // Replaced
diff --git a/sc/source/filter/inc/htmlpars.hxx 
b/sc/source/filter/inc/htmlpars.hxx
index d254352c5c2f..ca6dcd7dff2e 100644
--- a/sc/source/filter/inc/htmlpars.hxx
+++ b/sc/source/filter/inc/htmlpars.hxx
@@ -183,7 +183,7 @@ private:
     void                ProcToken( HtmlImportInfo* );
     void                CloseEntry( const HtmlImportInfo* );
     void                NextRow(  const HtmlImportInfo*  );
-    void                SkipLocked( ScEEParseEntry*, bool bJoin = true );
+    void                SkipLocked( ScEEParseEntry*, bool bJoin );
     static bool         SeekOffset( const ScHTMLColOffset*, sal_uInt16 nOffset,
                                     SCCOL* pCol, sal_uInt16 nOffsetTol );
     static void         MakeCol( ScHTMLColOffset*, sal_uInt16& nOffset,

Reply via email to