diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-08-30 19:24:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-08-31 09:55:56 +0200 |
commit | 79b58f222885cc0648ef46c7d05089f09060f793 (patch) | |
tree | b40ee36fe3c54d81de387034366f7e4044d42fa2 /sc | |
parent | 4f4452f6a74201e862971a79ba5bdcd06f3ba9ce (diff) |
reversed condition
Change-Id: I5d4440ed16fe6acc21923209f94067ce7df03564
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121323
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/lotus/lotimpop.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/lotus/lotimpop.cxx b/sc/source/filter/lotus/lotimpop.cxx index 9b3852f05a36..f1106b0c372c 100644 --- a/sc/source/filter/lotus/lotimpop.cxx +++ b/sc/source/filter/lotus/lotimpop.cxx @@ -113,7 +113,7 @@ void ImportLotus::Columnwidth( sal_uInt16 nRecLen ) Skip( 2 ); - while (nCnt && !pIn->good()) + while (nCnt && pIn->good()) { sal_uInt8 nCol(0), nSpaces(0); Read( nCol ); @@ -142,7 +142,7 @@ void ImportLotus::Hiddencolumn( sal_uInt16 nRecLen ) Skip( 2 ); - while (nCnt && !pIn->good()) + while (nCnt && pIn->good()) { sal_uInt8 nCol(0); Read( nCol ); |