summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdhdl.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-04-04 12:25:07 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-04-04 13:11:02 +0900
commit690b40af2d1e38e8a836b4c64b3fa3082fbac536 (patch)
treecbdfaae7cc86cc2266b7b1fb17fbbe5ab047a265 /svx/source/svdraw/svdhdl.cxx
parenta123975e4bfcad4f18fa4b336def8e4b8e8577b4 (diff)
sal_Bool to bool
Change-Id: I4f8a592404272f3ba2602aa1ef42d399d7faae78
Diffstat (limited to 'svx/source/svdraw/svdhdl.cxx')
-rw-r--r--svx/source/svdraw/svdhdl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdhdl.cxx b/svx/source/svdraw/svdhdl.cxx
index 02d9412e948a..a153bdd8f7a4 100644
--- a/svx/source/svdraw/svdhdl.cxx
+++ b/svx/source/svdraw/svdhdl.cxx
@@ -629,11 +629,11 @@ BitmapEx SdrHdl::ImpGetBitmapEx( BitmapMarkerKind eKindOfMarker, sal_uInt16 nInd
::sdr::overlay::OverlayObject* pRetval = 0L;
// support bigger sizes
- sal_Bool bForceBiggerSize(sal_False);
+ bool bForceBiggerSize(false);
if(pHdlList->GetHdlSize() > 3)
{
- bForceBiggerSize = sal_True;
+ bForceBiggerSize = true;
}
if(bForceBiggerSize)
@@ -761,9 +761,9 @@ bool SdrHdl::IsHdlHit(const Point& rPnt) const
Pointer SdrHdl::GetPointer() const
{
PointerStyle ePtr=POINTER_MOVE;
- const sal_Bool bSize=eKind>=HDL_UPLFT && eKind<=HDL_LWRGT;
- const sal_Bool bRot=pHdlList!=NULL && pHdlList->IsRotateShear();
- const sal_Bool bDis=pHdlList!=NULL && pHdlList->IsDistortShear();
+ const bool bSize=eKind>=HDL_UPLFT && eKind<=HDL_LWRGT;
+ const bool bRot=pHdlList!=NULL && pHdlList->IsRotateShear();
+ const bool bDis=pHdlList!=NULL && pHdlList->IsDistortShear();
if (bSize && pHdlList!=NULL && (bRot || bDis)) {
switch (eKind) {
case HDL_UPLFT: case HDL_UPRGT: