sc/source/filter/excel/xlformula.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 1cd17e986038e843e60944e674a4e0e155276f7f
Author:     Caolán McNamara <[email protected]>
AuthorDate: Mon Mar 29 10:41:54 2021 +0100
Commit:     Caolán McNamara <[email protected]>
CommitDate: Mon Mar 29 15:02:04 2021 +0200

    improve scoping
    
    Change-Id: I4638f35b99803ed8b46ffbf9e396b3fed65790e1
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113304
    Tested-by: Caolán McNamara <[email protected]>
    Reviewed-by: Caolán McNamara <[email protected]>

diff --git a/sc/source/filter/excel/xlformula.cxx 
b/sc/source/filter/excel/xlformula.cxx
index ad2f384234ff..8f176ab72921 100644
--- a/sc/source/filter/excel/xlformula.cxx
+++ b/sc/source/filter/excel/xlformula.cxx
@@ -740,8 +740,7 @@ sal_uInt16 XclTokenArray::GetSize() const
 
 void XclTokenArray::ReadSize( XclImpStream& rStrm )
 {
-    sal_uInt16 nSize;
-    nSize = rStrm.ReaduInt16();
+    sal_uInt16 nSize = rStrm.ReaduInt16();
     maTokVec.resize( nSize );
 }
 
_______________________________________________
Libreoffice-commits mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to