diff options
author | Ursache Vladimir <ursache@collabora.co.uk> | 2015-02-10 22:55:42 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-02-10 21:18:59 +0000 |
commit | 39b81f2fd09f020d183fec2319eb688d2db9d8a9 (patch) | |
tree | b53706d8a4394793be2fbb8a6cb64569309f1a66 /sc | |
parent | ec643628b8c2c627f9db52447d964519c30917b4 (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>
Diffstat (limited to 'sc')
-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 3adfc5705287..d27061ce8c97 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 ) |