diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-27 17:24:01 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-31 12:36:54 +0200 |
commit | ddb07081da099a392b1cdcbb8716afb6af43e006 (patch) | |
tree | be0017dab7a3996402c33bad613dd601e22c27b5 /xmloff/source/script/XMLEventsImportContext.cxx | |
parent | 3f60a32aa2413ca67eb243a3ba91abd3327a07b3 (diff) |
xmloff: sal_Bool->bool
Change-Id: I1deb10cb1581137ab92e73367e63339822a9a094
Diffstat (limited to 'xmloff/source/script/XMLEventsImportContext.cxx')
-rw-r--r-- | xmloff/source/script/XMLEventsImportContext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/script/XMLEventsImportContext.cxx b/xmloff/source/script/XMLEventsImportContext.cxx index de2a8c1f8a3e..e6edda892421 100644 --- a/xmloff/source/script/XMLEventsImportContext.cxx +++ b/xmloff/source/script/XMLEventsImportContext.cxx @@ -158,7 +158,7 @@ void XMLEventsImportContext::SetEvents( } } -sal_Bool XMLEventsImportContext::GetEventSequence( +bool XMLEventsImportContext::GetEventSequence( const OUString& rName, Sequence<PropertyValue> & rSequence ) { @@ -174,7 +174,7 @@ sal_Bool XMLEventsImportContext::GetEventSequence( } // if we're not at the end, set the sequence - sal_Bool bRet = (aIter != aCollectEvents.end()); + bool bRet = (aIter != aCollectEvents.end()); if (bRet) rSequence = aIter->second; |