summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbarangehelper.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-02-28 15:37:00 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-02-28 15:39:34 +0900
commit3f5434114bd8e67e97d73df76003ce08a2e931d2 (patch)
treef525b43b83a3597965de7adf23eca2ca5a706e11 /sw/source/ui/vba/vbarangehelper.cxx
parentaa636bddbdd4aa690124f36086d5cd25d40be2b9 (diff)
sal_Bool to bool
Change-Id: I78955b1a7aba864e83c5c5869f389809be0e76e0
Diffstat (limited to 'sw/source/ui/vba/vbarangehelper.cxx')
-rw-r--r--sw/source/ui/vba/vbarangehelper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/vba/vbarangehelper.cxx b/sw/source/ui/vba/vbarangehelper.cxx
index bed1059e70bf..0c45260159da 100644
--- a/sw/source/ui/vba/vbarangehelper.cxx
+++ b/sw/source/ui/vba/vbarangehelper.cxx
@@ -92,12 +92,12 @@ void SwVbaRangeHelper::insertString( uno::Reference< text::XTextRange >& rTextRa
uno::Reference< text::XTextCursor > SwVbaRangeHelper::initCursor( const uno::Reference< text::XTextRange >& rTextRange, const uno::Reference< text::XText >& rText ) throw ( uno::RuntimeException )
{
uno::Reference< text::XTextCursor > xTextCursor;
- sal_Bool bGotTextCursor = sal_False;
+ bool bGotTextCursor = false;
try
{
xTextCursor = rText->createTextCursorByRange( rTextRange );
- bGotTextCursor = sal_True;
+ bGotTextCursor = true;
}
catch (const uno::Exception& e)
{
@@ -110,7 +110,7 @@ uno::Reference< text::XTextCursor > SwVbaRangeHelper::initCursor( const uno::Ref
{
uno::Reference< text::XText > xText = rTextRange->getText();
xTextCursor = xText->createTextCursor();
- bGotTextCursor = sal_True;
+ bGotTextCursor = true;
}
catch (const uno::Exception& e)
{
@@ -123,7 +123,7 @@ uno::Reference< text::XTextCursor > SwVbaRangeHelper::initCursor( const uno::Ref
try
{
xTextCursor = rText->createTextCursor();
- bGotTextCursor = sal_True;
+ bGotTextCursor = true;
}
catch (const uno::Exception& e)
{