summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/bmpacc3.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-06-11 09:42:00 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-06-11 09:47:29 +0900
commit121ea27f55584ece5c18fcb12fe85a63cd69b349 (patch)
tree9977fcaa74c7af0b82e6f055353f9d84cda0a1a4 /vcl/source/gdi/bmpacc3.cxx
parentcef5c5dcb103e57be302957c530387dbbb042393 (diff)
sal_Bool to bool
Change-Id: I5ccddcab097e820d043a41d8fbe3f900fc1079e5
Diffstat (limited to 'vcl/source/gdi/bmpacc3.cxx')
-rw-r--r--vcl/source/gdi/bmpacc3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/bmpacc3.cxx b/vcl/source/gdi/bmpacc3.cxx
index 49d971c46e8a..791a75d9329d 100644
--- a/vcl/source/gdi/bmpacc3.cxx
+++ b/vcl/source/gdi/bmpacc3.cxx
@@ -143,7 +143,7 @@ void BitmapWriteAccess::DrawLine( const Point& rStart, const Point& rEnd )
const long nDYX = ( nDY - nDX ) << 1;
const long nDY2 = nDY << 1;
long nD = nDY2 - nDX;
- sal_Bool bPos = nY1 < nY2;
+ bool bPos = nY1 < nY2;
for ( nX = nX1, nY = nY1; nX <= nX2; nX++ )
{
@@ -182,7 +182,7 @@ void BitmapWriteAccess::DrawLine( const Point& rStart, const Point& rEnd )
const long nDYX = ( nDX - nDY ) << 1;
const long nDY2 = nDX << 1;
long nD = nDY2 - nDY;
- sal_Bool bPos = nX1 < nX2;
+ bool bPos = nX1 < nX2;
for ( nX = nX1, nY = nY1; nY <= nY2; nY++ )
{