summaryrefslogtreecommitdiffstats
path: root/editeng/source/uno/unoipset.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-09 11:03:42 +0200
committerNoel Grandin <noel@peralex.com>2014-04-15 09:02:32 +0200
commit3edb4611b2314fa5c03e1b4f70c425d92c95ed16 (patch)
tree77d7c9c28b3f427ccd842378d9160a40092fea88 /editeng/source/uno/unoipset.cxx
parentxmloff: sal_Bool->bool (diff)
downloadcore-3edb4611b2314fa5c03e1b4f70c425d92c95ed16.tar.gz
core-3edb4611b2314fa5c03e1b4f70c425d92c95ed16.zip
editeng: sal_Bool->bool
Change-Id: I71ea2f0e48a6252832180872945b96a120f21907
Diffstat (limited to 'editeng/source/uno/unoipset.cxx')
-rw-r--r--editeng/source/uno/unoipset.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/uno/unoipset.cxx b/editeng/source/uno/unoipset.cxx
index a051997c328e..84915f0b59f7 100644
--- a/editeng/source/uno/unoipset.cxx
+++ b/editeng/source/uno/unoipset.cxx
@@ -85,9 +85,9 @@ void SvxItemPropertySet::ClearAllUsrAny()
-sal_Bool SvxUnoCheckForPositiveValue( const uno::Any& rVal )
+bool SvxUnoCheckForPositiveValue( const uno::Any& rVal )
{
- sal_Bool bConvert = sal_True; // the default is that all metric items must be converted
+ bool bConvert = true; // the default is that all metric items must be converted
sal_Int32 nValue = 0;
if( rVal >>= nValue )
bConvert = (nValue > 0);