diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-02-18 02:30:11 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-03-14 15:09:15 +0000 |
commit | e237c0109c94da27715c115cecee69d382d6c183 (patch) | |
tree | f8fb7d308d6d27a58bab5dc7c54630d3aa844850 | |
parent | 20bcaeb0f8509e4b12d72d4612b5f3c9bfde3489 (diff) |
fix conditional format import from XLSB, tdf#105486
Change-Id: I2b781f45221e434c8ec0ee079afb54c505faf2b5
Reviewed-on: https://gerrit.libreoffice.org/34396
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
(cherry picked from commit aaea9beabcdfa16ffd36116591c5ebea25906b94)
Reviewed-on: https://gerrit.libreoffice.org/35154
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
-rw-r--r-- | sc/source/filter/oox/condformatcontext.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/source/filter/oox/condformatcontext.cxx b/sc/source/filter/oox/condformatcontext.cxx index 79c92d2a4d07..4a876648a80d 100644 --- a/sc/source/filter/oox/condformatcontext.cxx +++ b/sc/source/filter/oox/condformatcontext.cxx @@ -253,7 +253,9 @@ void CondFormatContext::onEndRecord() { case BIFF12_ID_CONDFORMATTING: if( mxCondFmt.get() ) - mxCondFmt->finalizeImport(); + { + mxCondFmt->setReadyForFinalize(); + } break; } } |