summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrsache Vladimir <ursache@collabora.co.uk>2015-02-10 22:55:42 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-02-14 01:48:06 +0100
commit5a97d670050722c5977bee9f96991e0df314468b (patch)
treed858c7ea24e8f60fafd00df1ca52ed3738d33224
parente91d901189f8265b82d40b5053c0553174a534d4 (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>
-rw-r--r--sc/source/filter/oox/sheetdatabuffer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/sheetdatabuffer.cxx b/sc/source/filter/oox/sheetdatabuffer.cxx
index 11c9c7f960a2..f83635775252 100644
--- a/sc/source/filter/oox/sheetdatabuffer.cxx
+++ b/sc/source/filter/oox/sheetdatabuffer.cxx
@@ -204,7 +204,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 )