diff options
author | Ursache Vladimir <ursache@collabora.co.uk> | 2015-02-10 22:55:42 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2015-02-23 10:34:59 +0100 |
commit | 63f478b98abddf0876564a00c13eaccc40e218fa (patch) | |
tree | 739e3f80ad9fa92227378e8c45be6f6507b4388e | |
parent | 2d470293adb8142daf8bf2fecc6fbd21e0fb22e3 (diff) |
tdf#68117 Partially fix boolean labels in XLSX
Change-Id: I731a58c7749e157f6b40c60808687ce629683742
Reviewed-on: https://gerrit.libreoffice.org/14410
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
(cherry picked from commit 9c0910765954fba7611611befc1d42ab19d010ef)
-rw-r--r-- | sc/source/filter/oox/sheetdatabuffer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/sheetdatabuffer.cxx b/sc/source/filter/oox/sheetdatabuffer.cxx index c77f43fb372e..741c7f42bc82 100644 --- a/sc/source/filter/oox/sheetdatabuffer.cxx +++ b/sc/source/filter/oox/sheetdatabuffer.cxx @@ -192,7 +192,7 @@ void SheetDataBuffer::setBooleanCell( const CellModel& rModel, bool bValue ) rModel.maCellAddr, bValue ? OUString("TRUE()") : OUString("FALSE()")); // #108770# set 'Standard' number format for all Boolean cells - setCellFormat( rModel, 0 ); + setCellFormat( rModel ); } void SheetDataBuffer::setErrorCell( const CellModel& rModel, const OUString& rErrorCode ) |