diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-13 14:02:45 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-13 14:04:20 -0400 |
commit | 286760359bae7e21a772dd104ab17a1df69a57b0 (patch) | |
tree | 8a9c8540b317989ccb554d07509beeff98b093ef | |
parent | 14e21865443a7318c715c2f9ff655d5b21f716ea (diff) |
fdo#78471: Don't forget to record the ID of the last record for BIFF5.
Shared formula import code depends on this.
Change-Id: Iecb009252c56673df33e0d681de825911154903a
-rw-r--r-- | sc/source/filter/excel/read.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/read.cxx b/sc/source/filter/excel/read.cxx index 05d2fca9b0f5..5c6e6f261004 100644 --- a/sc/source/filter/excel/read.cxx +++ b/sc/source/filter/excel/read.cxx @@ -90,7 +90,7 @@ FltError ImportExcel::Read( void ) sal_Size nProgressBasePos = 0; sal_Size nProgressBaseSize = 0; - while( eAkt != Z_Ende ) + for (; eAkt != Z_Ende; mnLastRecId = nOpcode) { if( eAkt == Z_Biff5E ) { |