summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xerecord.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/excel/xerecord.cxx')
-rw-r--r--sc/source/filter/excel/xerecord.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xerecord.cxx b/sc/source/filter/excel/xerecord.cxx
index 4d724d77d150..3807ae94258d 100644
--- a/sc/source/filter/excel/xerecord.cxx
+++ b/sc/source/filter/excel/xerecord.cxx
@@ -165,7 +165,7 @@ void XclExpValueRecord<double>::SaveXml( XclExpXmlStream& rStrm )
void XclExpBoolRecord::WriteBody( XclExpStream& rStrm )
{
- rStrm << (static_cast< sal_uInt16 >( mbValue ? 1 : 0 ));
+ rStrm << static_cast< sal_uInt16 >( mbValue ? 1 : 0 );
}
void XclExpBoolRecord::SaveXml( XclExpXmlStream& rStrm )