diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-04-28 11:49:44 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-04-28 11:51:51 +0200 |
commit | dea3ab9db68502b4f8306eb79c944ab87660888e (patch) | |
tree | 3143b65efa90846ca69301b6a51171de598d7f81 /oox | |
parent | 4cd629645cdebf30f2e941df6e17f51b50d934f1 (diff) |
sal_Bool to bool in previous commit
Change-Id: I6de50ccd8b99d6d7dbd049fc184c3f6117217318
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 9b12eb766336..ae7a926e4f72 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -2009,12 +2009,12 @@ void ChartExport::exportSeriesValues( const Reference< chart2::data::XDataSequen XML_val, I32S( ptCount ), FSEND ); - sal_Bool bIsNumberValue = sal_True; - sal_Bool bXSeriesValue = sal_False; + bool bIsNumberValue = true; + bool bXSeriesValue = false; double Value = 1.0; if(nValueType == XML_xVal) - bXSeriesValue = sal_True; + bXSeriesValue = true; for( sal_Int32 i = 0; i < ptCount; i++ ) { @@ -2030,7 +2030,7 @@ void ChartExport::exportSeriesValues( const Reference< chart2::data::XDataSequen //In Case aValues is not a number for X Values...We write X values as 1,2,3....MS Word does the same thing. pFS->write( Value ); Value = Value + 1; - bIsNumberValue = sal_False; + bIsNumberValue = false; } pFS->endElement( FSNS( XML_c, XML_v ) ); pFS->endElement( FSNS( XML_c, XML_pt ) ); |