diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-11 15:23:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-14 07:50:32 +0200 |
commit | 13bc4094dadb6accfbe00ba93dee178c22922c56 (patch) | |
tree | e22f2a6b63a84b95123b706aa1a75259126cb261 /svx/source/xoutdev/xattrbmp.cxx | |
parent | fae4102573d184696a1fe1394258ec9ad3a895dc (diff) |
svx: sal_Bool->bool
Change-Id: I673d022c01b7d076120c026b236a37735b5043b0
Diffstat (limited to 'svx/source/xoutdev/xattrbmp.cxx')
-rw-r--r-- | svx/source/xoutdev/xattrbmp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/xoutdev/xattrbmp.cxx b/svx/source/xoutdev/xattrbmp.cxx index 674f8f63727a..71dbdba847df 100644 --- a/svx/source/xoutdev/xattrbmp.cxx +++ b/svx/source/xoutdev/xattrbmp.cxx @@ -46,7 +46,7 @@ XOBitmap::XOBitmap( const Bitmap& rBmp ) : eType ( XBITMAP_IMPORT ), aGraphicObject ( rBmp ), pPixelArray ( NULL ), - bGraphicDirty ( sal_False ) + bGraphicDirty ( false ) { } @@ -194,7 +194,7 @@ void XOBitmap::Array2Bitmap() } aGraphicObject = GraphicObject( aVD.GetBitmap( Point(), Size( nLines, nLines ) ) ); - bGraphicDirty = sal_False; + bGraphicDirty = false; } // class XFillBitmapItem @@ -538,7 +538,7 @@ bool XFillBitmapItem::PutValue( const ::com::sun::star::uno::Any& rVal, sal_uInt return (bSetName || bSetURL || bSetBitmap); } -sal_Bool XFillBitmapItem::CompareValueFunc( const NameOrIndex* p1, const NameOrIndex* p2 ) +bool XFillBitmapItem::CompareValueFunc( const NameOrIndex* p1, const NameOrIndex* p2 ) { const GraphicObject& aGraphicObjectA(((XFillBitmapItem*)p1)->GetGraphicObject()); const GraphicObject& aGraphicObjectB(((XFillBitmapItem*)p2)->GetGraphicObject()); |