summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbaselection.cxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-11-09 20:49:05 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-11-16 16:54:39 +0100
commit2abe293f085fc66eeaeeae85c9714a41a874cbcd (patch)
tree5bc520bcd1b60cd0f39ccf9b72e721a981d4ebe6 /sw/source/ui/vba/vbaselection.cxx
parentfe4901829f7e1ff397945a7abd5af977a80978e9 (diff)
makeAny(sal_True/sal_False) to makeAny(true/false) in sw
Change-Id: Ie368fecd39189dc6ea72737b0c695c55a2d350a9
Diffstat (limited to 'sw/source/ui/vba/vbaselection.cxx')
-rw-r--r--sw/source/ui/vba/vbaselection.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/vba/vbaselection.cxx b/sw/source/ui/vba/vbaselection.cxx
index cc321aeb52d7..f2af13a09a08 100644
--- a/sw/source/ui/vba/vbaselection.cxx
+++ b/sw/source/ui/vba/vbaselection.cxx
@@ -695,9 +695,9 @@ uno::Any SAL_CALL SwVbaSelection::Information( sal_Int32 _type ) throw (uno::Run
uno::Reference< text::XTextTable > xTextTable;
xCursorProps->getPropertyValue("TextTable") >>= xTextTable;
if( xTextTable.is() )
- result = uno::makeAny( sal_True );
+ result = uno::makeAny( true );
else
- result = uno::makeAny( sal_False );
+ result = uno::makeAny( false );
break;
}
case word::WdInformation::wdHeaderFooterType: