summaryrefslogtreecommitdiff
path: root/sw/source/core/view/vdraw.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-12-17 18:12:09 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-12-17 19:12:27 +0900
commit2bbb4b9c5bf9c61c5b0b7fdfcce5b97e04a63a8a (patch)
treeb9009165d81e91480c4aae8845364928335f11d0 /sw/source/core/view/vdraw.cxx
parent5af4fff6d4dede7e60d407766f30e7191eeeee66 (diff)
sal_Bool to bool
Change-Id: I8fe2b267454a3a4c235e6de7f44aa127657d0429
Diffstat (limited to 'sw/source/core/view/vdraw.cxx')
-rw-r--r--sw/source/core/view/vdraw.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/view/vdraw.cxx b/sw/source/core/view/vdraw.cxx
index 3c331cc15cb1..7b5009bdfc48 100644
--- a/sw/source/core/view/vdraw.cxx
+++ b/sw/source/core/view/vdraw.cxx
@@ -200,11 +200,11 @@ void SwViewImp::NotifySizeChg( const Size &rNewSz )
// Limitation of the work area
const Rectangle aRect( Point( DOCUMENTBORDER, DOCUMENTBORDER ), rNewSz );
const Rectangle &rOldWork = GetDrawView()->GetWorkArea();
- sal_Bool bCheckDrawObjs = sal_False;
+ bool bCheckDrawObjs = false;
if ( aRect != rOldWork )
{
if ( rOldWork.Bottom() > aRect.Bottom() || rOldWork.Right() > aRect.Right())
- bCheckDrawObjs = sal_True;
+ bCheckDrawObjs = true;
GetDrawView()->SetWorkArea( aRect );
}
if ( !bCheckDrawObjs )