summaryrefslogtreecommitdiff
path: root/toolkit/source/controls/eventcontainer.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-24 11:13:09 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-24 11:13:42 +0100
commit146c7c5c89d9ce26c3de951ff049d36df1b5857b (patch)
treed66d72cb77002c96f528790f88012617243ccbf3 /toolkit/source/controls/eventcontainer.cxx
parent569756aaf4606313297eace88b3ad5a6f57d8329 (diff)
toolkit: sal_Bool -> bool
Change-Id: I5153c4413004d1b50cc503b3e70657bc831a5793
Diffstat (limited to 'toolkit/source/controls/eventcontainer.cxx')
-rw-r--r--toolkit/source/controls/eventcontainer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/controls/eventcontainer.cxx b/toolkit/source/controls/eventcontainer.cxx
index 35999d38240c..59df35a00501 100644
--- a/toolkit/source/controls/eventcontainer.cxx
+++ b/toolkit/source/controls/eventcontainer.cxx
@@ -50,7 +50,7 @@ Type NameContainer_Impl::getElementType()
sal_Bool NameContainer_Impl::hasElements()
throw(RuntimeException)
{
- sal_Bool bRet = (mnElementCount > 0);
+ bool bRet = (mnElementCount > 0);
return bRet;
}
@@ -78,7 +78,7 @@ sal_Bool NameContainer_Impl::hasByName( const OUString& aName )
throw(RuntimeException)
{
NameContainerNameMap::iterator aIt = mHashMap.find( aName );
- sal_Bool bRet = ( aIt != mHashMap.end() );
+ bool bRet = ( aIt != mHashMap.end() );
return bRet;
}