diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-05 13:18:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:17 +0200 |
commit | c54b276beb30c36cee4d7cf2ccbd552c526777e7 (patch) | |
tree | c4d6a7f8bc55a32fbc881284027dcc81697cf3ac /include/svx/svdpoev.hxx | |
parent | 96a3ed193691de0761a7754a6477f1196679590d (diff) |
svx: sal_Bool->bool
Change-Id: Ibe154941e00176cde06b1fe69864da4ae6bdee95
Diffstat (limited to 'include/svx/svdpoev.hxx')
-rw-r--r-- | include/svx/svdpoev.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svdpoev.hxx b/include/svx/svdpoev.hxx index 473403592be0..700607c8056c 100644 --- a/include/svx/svdpoev.hxx +++ b/include/svx/svdpoev.hxx @@ -50,18 +50,18 @@ protected: virtual ~SdrPolyEditView(); public: - sal_Bool IsSetMarkedPointsSmoothPossible() const; + bool IsSetMarkedPointsSmoothPossible() const; SdrPathSmoothKind GetMarkedPointsSmooth() const; void SetMarkedPointsSmooth(SdrPathSmoothKind eKind); // Ein PolySegment kann eine Strecke oder eine Bezierkurve sein. - sal_Bool IsSetMarkedSegmentsKindPossible() const; + bool IsSetMarkedSegmentsKindPossible() const; SdrPathSegmentKind GetMarkedSegmentsKind() const; void SetMarkedSegmentsKind(SdrPathSegmentKind eKind); // Moeglicherweise ist das Obj hinterher geloescht: void DeleteMarkedPoints(); - sal_Bool IsDeleteMarkedPointsPossible() const; + bool IsDeleteMarkedPointsPossible() const; void MoveMarkedPoints(const Size& rSiz, bool bCopy=false); void ResizeMarkedPoints(const Point& rRef, const Fraction& xFact, const Fraction& yFact, bool bCopy=false); @@ -73,7 +73,7 @@ public: // Alle markierten Polylines werden zu Polygonen, alle offenen // Bezierkurven zu geschlossenen. - void CloseMarkedObjects(sal_Bool bToggle=sal_False, sal_Bool bOpen=sal_False); // , long nOpenDistance=0); + void CloseMarkedObjects(bool bToggle=false, bool bOpen=false); // , long nOpenDistance=0); bool IsOpenCloseMarkedObjectsPossible() const; SdrObjClosedKind GetMarkedObjectsClosedState() const; |