summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev/_xpoly.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-04-22 09:10:41 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-04-22 09:29:41 +0900
commit550546a2fc651913a5624f4bcc4bec6e6d382c26 (patch)
tree851f31025cfdb69cf57871ef7515f9bbe78e56da /svx/source/xoutdev/_xpoly.cxx
parentd5e5de641cef7664a605f474bf7c18a70008806b (diff)
sal_Bool to bool
Change-Id: Ibaa2a843e16c22b6e2fb7e53da335b9b35b70a96
Diffstat (limited to 'svx/source/xoutdev/_xpoly.cxx')
-rw-r--r--svx/source/xoutdev/_xpoly.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/xoutdev/_xpoly.cxx b/svx/source/xoutdev/_xpoly.cxx
index 4053c11158c6..2573ba3367ec 100644
--- a/svx/source/xoutdev/_xpoly.cxx
+++ b/svx/source/xoutdev/_xpoly.cxx
@@ -344,7 +344,7 @@ XPolygon::XPolygon(const Point& rCenter, long nRx, long nRy,
nStartAngle %= 3600;
if ( nEndAngle > 3600 ) nEndAngle %= 3600;
- sal_Bool bFull = (nStartAngle == 0 && nEndAngle == 3600);
+ bool bFull = (nStartAngle == 0 && nEndAngle == 3600);
// Faktor fuer Kontrollpunkte der Bezierkurven: 8/3 * (sin(45g) - 0.5)
long nXHdl = (long)(0.552284749 * nRx);