summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbarangehelper.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-20 17:20:14 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-20 17:27:27 +0200
commit2c6840eb95eb925be78f2b5279594ef5c71c2e98 (patch)
treee51faa80bc33355f2224311f8b7ec0f10ef2da0d /sw/source/ui/vba/vbarangehelper.cxx
parentbb34461d280d499d93ef982e9b7391fd791ffa35 (diff)
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I5c33d8ed3551d9ad4432824995bfdc3f73cfc5f8
Diffstat (limited to 'sw/source/ui/vba/vbarangehelper.cxx')
-rw-r--r--sw/source/ui/vba/vbarangehelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/vba/vbarangehelper.cxx b/sw/source/ui/vba/vbarangehelper.cxx
index d5d5b70313be..dda1bb6558f1 100644
--- a/sw/source/ui/vba/vbarangehelper.cxx
+++ b/sw/source/ui/vba/vbarangehelper.cxx
@@ -52,7 +52,7 @@ uno::Reference< text::XTextRange > SwVbaRangeHelper::getRangeByPosition( const u
}
else
{
- bCanGo = xCursor->goRight( 1, sal_False );
+ bCanGo = xCursor->goRight( 1, false );
nPos++;
}
}
@@ -148,7 +148,7 @@ sal_Int32 SwVbaRangeHelper::getPosition( const uno::Reference< text::XText >& rT
while( nCompareValue !=0 && canGo )
{
- canGo = xCursor->goRight( 1, sal_False );
+ canGo = xCursor->goRight( 1, false );
nCompareValue = xCompare->compareRegionStarts( xCursor->getStart(), rTextRange );
nPosition++;
}