diff options
-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 ); |