summaryrefslogtreecommitdiff
path: root/include/svx/xbitmap.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-11 15:23:07 +0200
committerNoel Grandin <noel@peralex.com>2014-03-14 07:50:32 +0200
commit13bc4094dadb6accfbe00ba93dee178c22922c56 (patch)
treee22f2a6b63a84b95123b706aa1a75259126cb261 /include/svx/xbitmap.hxx
parentfae4102573d184696a1fe1394258ec9ad3a895dc (diff)
svx: sal_Bool->bool
Change-Id: I673d022c01b7d076120c026b236a37735b5043b0
Diffstat (limited to 'include/svx/xbitmap.hxx')
-rw-r--r--include/svx/xbitmap.hxx8
1 files changed, 4 insertions, 4 deletions
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;