[Libreoffice-commits] core.git: sc/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Mon Mar 29 13:03:08 UTC 2021


 sc/source/filter/excel/impop.cxx    |    3 +--
 sc/source/filter/excel/xiescher.cxx |    3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 9a0d2378baeeb654e81af1871b4933f3a90b27e6
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon Mar 29 10:46:30 2021 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Mon Mar 29 15:02:21 2021 +0200

    improve scoping
    
    Change-Id: I579ab896f9694e95b10fac35263f9d13779c46e3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113305
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sc/source/filter/excel/impop.cxx b/sc/source/filter/excel/impop.cxx
index b834ecb8ed46..c1cf9a5edbdd 100644
--- a/sc/source/filter/excel/impop.cxx
+++ b/sc/source/filter/excel/impop.cxx
@@ -923,8 +923,7 @@ void ImportExcel::Cellmerging()
     XclImpAddressConverter& rAddrConv = GetAddressConverter();
     SCTAB nScTab = GetCurrScTab();
 
-    sal_uInt16 nCount;
-    nCount = maStrm.ReaduInt16();
+    sal_uInt16 nCount = maStrm.ReaduInt16();
     for( sal_uInt16 nIdx = 0; (nIdx < nCount) && (maStrm.GetRecLeft() >= 8); ++nIdx )
     {
         XclRange aXclRange;
diff --git a/sc/source/filter/excel/xiescher.cxx b/sc/source/filter/excel/xiescher.cxx
index 09c8a0b4b034..dd82a0c2f67c 100644
--- a/sc/source/filter/excel/xiescher.cxx
+++ b/sc/source/filter/excel/xiescher.cxx
@@ -4241,9 +4241,8 @@ void XclImpSheetDrawing::OnObjectInserted( const XclImpDrawObjBase& rDrawObj )
 void XclImpSheetDrawing::ReadNote3( XclImpStream& rStrm )
 {
     XclAddress aXclPos;
-    sal_uInt16 nTotalLen;
     rStrm >> aXclPos;
-    nTotalLen = rStrm.ReaduInt16();
+    sal_uInt16 nTotalLen = rStrm.ReaduInt16();
 
     ScAddress aScNotePos( ScAddress::UNINITIALIZED );
     if( !GetAddressConverter().ConvertAddress( aScNotePos, aXclPos, maScUsedArea.aStart.Tab(), true ) )


More information about the Libreoffice-commits mailing list