sc/source/filter/lotus/op.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit d2d50dba5b41ebd1d4c848c48c9ec457d9efcd93
Author:     Simon Chenery <simon_chen...@yahoo.com>
AuthorDate: Sat Apr 26 19:46:25 2025 +0200
Commit:     Michael Stahl <michael.st...@allotropia.de>
CommitDate: Tue Apr 29 11:30:34 2025 +0200

    tdf#164954 replace German variable nBreite with English nWidth in op.cxx
    
    Change-Id: I286b15f178a76118189d4a57dfbe61ce641f38c3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184667
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <michael.st...@allotropia.de>

diff --git a/sc/source/filter/lotus/op.cxx b/sc/source/filter/lotus/op.cxx
index c51531b7b45e..e1c46643bd55 100644
--- a/sc/source/filter/lotus/op.cxx
+++ b/sc/source/filter/lotus/op.cxx
@@ -179,17 +179,17 @@ void OP_ColumnWidth(LotusContext& rContext, SvStream& r, 
sal_uInt16 /*n*/)
 
     nCol = rContext.rDoc.SanitizeCol(nCol);
 
-    sal_uInt16 nBreite;
+    sal_uInt16 nWidth;
     if( nWidthSpaces )
         // assuming 10cpi character set
-        nBreite = static_cast<sal_uInt16>( TWIPS_PER_CHAR * nWidthSpaces );
+        nWidth = static_cast<sal_uInt16>( TWIPS_PER_CHAR * nWidthSpaces );
     else
     {
         rContext.rDoc.SetColHidden(nCol, nCol, 0, true);
-        nBreite = nDefWidth;
+        nWidth = nDefWidth;
     }
 
-    rContext.rDoc.SetColWidth(nCol, 0, nBreite);
+    rContext.rDoc.SetColWidth(nCol, 0, nWidth);
 }
 
 void OP_NamedRange(LotusContext& rContext, SvStream& r, sal_uInt16 /*n*/)

Reply via email to