diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-14 16:15:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-15 09:02:33 +0200 |
commit | be88947bac607013c6b7a3c923a2eccd09e50942 (patch) | |
tree | 09cdc0803437ac8c76e12c60c6644c49cb1d5dd4 /svx/inc/xpolyimp.hxx | |
parent | cfddda092b0c105b5be7942a94cbbd88d55677f1 (diff) |
svx: sal_Bool->bool
Change-Id: I464eba5fd5521c31868c6fc8a2137f17428d421e
Diffstat (limited to 'svx/inc/xpolyimp.hxx')
-rw-r--r-- | svx/inc/xpolyimp.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/inc/xpolyimp.hxx b/svx/inc/xpolyimp.hxx index 3ed0b106e14a..2b9bc67c13fe 100644 --- a/svx/inc/xpolyimp.hxx +++ b/svx/inc/xpolyimp.hxx @@ -28,10 +28,10 @@ class Point; class ImpXPolygon { public: - Point* pPointAry; - sal_uInt8* pFlagAry; - Point* pOldPointAry; - sal_Bool bDeleteOldPoints; + Point* pPointAry; + sal_uInt8* pFlagAry; + Point* pOldPointAry; + bool bDeleteOldPoints; sal_uInt16 nSize; sal_uInt16 nResize; sal_uInt16 nPoints; @@ -49,11 +49,11 @@ public: if ( bDeleteOldPoints ) { delete[] (char*)pOldPointAry; - bDeleteOldPoints = sal_False; + bDeleteOldPoints = false; } } - void Resize( sal_uInt16 nNewSize, sal_Bool bDeletePoints = sal_True ); + void Resize( sal_uInt16 nNewSize, bool bDeletePoints = true ); void InsertSpace( sal_uInt16 nPos, sal_uInt16 nCount ); void Remove( sal_uInt16 nPos, sal_uInt16 nCount ); }; |