From 13bc4094dadb6accfbe00ba93dee178c22922c56 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 11 Mar 2014 15:23:07 +0200 Subject: svx: sal_Bool->bool Change-Id: I673d022c01b7d076120c026b236a37735b5043b0 --- include/svx/xbitmap.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/svx/xbitmap.hxx') diff --git a/include/svx/xbitmap.hxx b/include/svx/xbitmap.hxx index 4ff5e77d0f6b..4229d62964a1 100644 --- a/include/svx/xbitmap.hxx +++ b/include/svx/xbitmap.hxx @@ -35,7 +35,7 @@ private: Size aArraySize; Color aPixelColor; Color aBckgrColor; - sal_Bool bGraphicDirty; + bool bGraphicDirty; const GraphicObject& GetGraphicObject() const; @@ -51,9 +51,9 @@ public: void Array2Bitmap(); void SetBitmapType( XBitmapType eNewType ) { eType = eNewType; } - void SetPixelColor( const Color& rColor ) { aPixelColor = rColor; bGraphicDirty = sal_True; } - void SetPixelSize( const Size& rSize ) { aArraySize = rSize; bGraphicDirty = sal_True; } - void SetBackgroundColor( const Color& rColor ) { aBckgrColor = rColor; bGraphicDirty = sal_True; } + void SetPixelColor( const Color& rColor ) { aPixelColor = rColor; bGraphicDirty = true; } + void SetPixelSize( const Size& rSize ) { aArraySize = rSize; bGraphicDirty = true; } + void SetBackgroundColor( const Color& rColor ) { aBckgrColor = rColor; bGraphicDirty = true; } XBitmapType GetBitmapType() const { return eType; } Bitmap GetBitmap() const; -- cgit