diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-02 09:36:43 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-03 09:17:52 +0200 |
commit | abc429987c6ce644658824fb20db113af855c8b2 (patch) | |
tree | eb26b1d389b72f92050b6fc76bee86b0a7c79176 /sc | |
parent | ba73873ea70b076e0c04d33fea2e243a1b6f3a43 (diff) |
filter/msfilter: sal_Bool->bool
Change-Id: I24deda680469ce99ba358a68e83551bdb584751a
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/expop2.cxx | 2 | ||||
-rw-r--r-- | sc/source/filter/excel/xiescher.cxx | 2 | ||||
-rw-r--r-- | sc/source/filter/xcl97/xcl97esc.cxx | 2 | ||||
-rw-r--r-- | sc/source/filter/xcl97/xcl97rec.cxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/excel/expop2.cxx b/sc/source/filter/excel/expop2.cxx index 1cec3de46a9d..9f22bbef3d63 100644 --- a/sc/source/filter/excel/expop2.cxx +++ b/sc/source/filter/excel/expop2.cxx @@ -78,7 +78,7 @@ FltError ExportBiff5::Write() if( pDocShell && xRootStrg.Is() && bWriteBasicStrg ) { SvxImportMSVBasic aBasicImport( *pDocShell, *xRootStrg ); - sal_uLong nErr = aBasicImport.SaveOrDelMSVBAStorage( sal_True, EXC_STORAGE_VBA_PROJECT ); + sal_uLong nErr = aBasicImport.SaveOrDelMSVBAStorage( true, EXC_STORAGE_VBA_PROJECT ); if( nErr != ERRCODE_NONE ) pDocShell->SetError( nErr, OUString( OSL_LOG_PREFIX ) ); } diff --git a/sc/source/filter/excel/xiescher.cxx b/sc/source/filter/excel/xiescher.cxx index e00a064bebdc..2055a2716b85 100644 --- a/sc/source/filter/excel/xiescher.cxx +++ b/sc/source/filter/excel/xiescher.cxx @@ -3511,7 +3511,7 @@ void XclImpDffConverter::ProcessClientAnchor2( SvStream& rDffStrm, pDrawObj->SetAnchor( aAnchor ); rObjData.aChildAnchor = rConvData.mrDrawing.CalcAnchorRect( aAnchor, true ); - rObjData.bChildAnchor = sal_True; + rObjData.bChildAnchor = true; // page anchoring is the best approximation we have if mbMove // is set rObjData.bPageAnchor = ( nFlags & 0x1 ); diff --git a/sc/source/filter/xcl97/xcl97esc.cxx b/sc/source/filter/xcl97/xcl97esc.cxx index fcef451a1fa1..6fbc7bc16160 100644 --- a/sc/source/filter/xcl97/xcl97esc.cxx +++ b/sc/source/filter/xcl97/xcl97esc.cxx @@ -347,7 +347,7 @@ EscherExHostAppData* XclEscherEx::StartShape( const Reference< XShape >& rxShape } } if ( !pCurrXclObj ) - pCurrAppData->SetDontWriteShape( sal_True ); + pCurrAppData->SetDontWriteShape( true ); return pCurrAppData; } diff --git a/sc/source/filter/xcl97/xcl97rec.cxx b/sc/source/filter/xcl97/xcl97rec.cxx index cb2f99666023..34237b48c11f 100644 --- a/sc/source/filter/xcl97/xcl97rec.cxx +++ b/sc/source/filter/xcl97/xcl97rec.cxx @@ -453,7 +453,7 @@ static void lcl_FillProps( EscherPropertyContainer& rPropOpt, SdrObject* pCaptio Reference< XPropertySet > aXPropSet( aXShape, UNO_QUERY ); if( aXPropSet.is() ) { - rPropOpt.CreateFillProperties( aXPropSet, sal_True); + rPropOpt.CreateFillProperties( aXPropSet, true); rPropOpt.AddOpt( ESCHER_Prop_lTxid, 0 ); // undocumented rPropOpt.AddOpt( 0x0158, 0x00000000 ); // undocumented |