summaryrefslogtreecommitdiff
path: root/xmloff/inc/MultiPropertySetHelper.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-07 16:42:18 +0200
committerNoel Grandin <noel@peralex.com>2014-04-15 09:02:31 +0200
commit8a81f542a6ca566661305c53899b7e422cbaa432 (patch)
treeb70ce405aab1c29856fa824493a664ba8ba27596 /xmloff/inc/MultiPropertySetHelper.hxx
parent42bfd486a457d327f640263ccc3ee02a380f3566 (diff)
xmloff: sal_Bool->bool
Change-Id: I873c80baec8e70e3e8f642644563b92137571a30
Diffstat (limited to 'xmloff/inc/MultiPropertySetHelper.hxx')
-rw-r--r--xmloff/inc/MultiPropertySetHelper.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/inc/MultiPropertySetHelper.hxx b/xmloff/inc/MultiPropertySetHelper.hxx
index a6d6da846069..c467bba85097 100644
--- a/xmloff/inc/MultiPropertySetHelper.hxx
+++ b/xmloff/inc/MultiPropertySetHelper.hxx
@@ -132,7 +132,7 @@ public:
*
* May only be called after hasProperties() was called.
*/
- inline sal_Bool hasProperty( sal_Int16 nIndex );
+ inline bool hasProperty( sal_Int16 nIndex );
/**
* Get a value from the XPropertySet on demand.
@@ -182,7 +182,7 @@ const ::com::sun::star::uno::Any& MultiPropertySetHelper::getValue(
return ( nIndex != -1 ) ? pValues[ nIndex ] : aEmptyAny;
}
-sal_Bool MultiPropertySetHelper::hasProperty( sal_Int16 nValueNo )
+bool MultiPropertySetHelper::hasProperty( sal_Int16 nValueNo )
{
DBG_ASSERT( pSequenceIndex != NULL,
"called getValue() without calling hasProperties() before" );