diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-17 09:51:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-17 13:43:49 +0200 |
commit | ab6fe4267d428947a5eb9e7998ff03fc167e2cd8 (patch) | |
tree | 65a33373b7122a12e8a82d945e1da92ecb596cd6 /sc/inc/chartpos.hxx | |
parent | e3509a737480f8cb843dc416f5b6ebdd0f643e75 (diff) |
sal_Bool->bool
Change-Id: Ife994f88e0536a6bdd414deacc2c1e0315ad312f
Diffstat (limited to 'sc/inc/chartpos.hxx')
-rw-r--r-- | sc/inc/chartpos.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/inc/chartpos.hxx b/sc/inc/chartpos.hxx index af9bc66016e9..eda1a0bdabec 100644 --- a/sc/inc/chartpos.hxx +++ b/sc/inc/chartpos.hxx @@ -110,9 +110,9 @@ class ScChartPositioner // only parameter struct ScChartGlue eGlue; SCCOL nStartCol; SCROW nStartRow; - sal_Bool bColHeaders; - sal_Bool bRowHeaders; - sal_Bool bDummyUpperLeft; + bool bColHeaders; + bool bRowHeaders; + bool bDummyUpperLeft; private: void CheckColRowHeaders(); @@ -133,10 +133,10 @@ public: void SetRangeList( const ScRangeListRef& rNew ) { aRangeListRef = rNew; } void SetRangeList( const ScRange& rNew ); - void SetHeaders(sal_Bool bCol, sal_Bool bRow) { bColHeaders=bCol; bRowHeaders=bRow; } - sal_Bool HasColHeaders() const { return bColHeaders; } - sal_Bool HasRowHeaders() const { return bRowHeaders; } - void SetDummyUpperLeft(sal_Bool bNew) { bDummyUpperLeft = bNew; } + void SetHeaders(bool bCol, bool bRow) { bColHeaders=bCol; bRowHeaders=bRow; } + bool HasColHeaders() const { return bColHeaders; } + bool HasRowHeaders() const { return bRowHeaders; } + void SetDummyUpperLeft(bool bNew) { bDummyUpperLeft = bNew; } void SeteGlue(ScChartGlue eNew) { eGlue = eNew; } void SetStartCol(SCCOL nNew) { nStartCol = nNew; } void SetStartRow(SCROW nNew) { nStartRow = nNew; } |