summaryrefslogtreecommitdiff
path: root/cppu/source/threadpool/thread.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-15 17:39:35 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:18 +0100
commit34a44156b3983849749d82b90d82b84aeb538aae (patch)
tree393815dd01ca56cadb7b8f63f477b553e98c06f6 /cppu/source/threadpool/thread.cxx
parent5dd4a0690124c0d3fc1835a59e0fca2d12773afe (diff)
cppu: sal_Bool -> bool
Change-Id: I1288f1f6f38d1475b4eb5272509e479bd9f2552d
Diffstat (limited to 'cppu/source/threadpool/thread.cxx')
-rw-r--r--cppu/source/threadpool/thread.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppu/source/threadpool/thread.cxx b/cppu/source/threadpool/thread.cxx
index 85076b00157b..e8a64c685390 100644
--- a/cppu/source/threadpool/thread.cxx
+++ b/cppu/source/threadpool/thread.cxx
@@ -103,7 +103,7 @@ namespace cppu_threadpool {
ORequestThread::ORequestThread( ThreadPoolHolder const &aThreadPool,
JobQueue *pQueue,
const ByteSequence &aThreadId,
- sal_Bool bAsynchron )
+ bool bAsynchron )
: m_aThreadPool( aThreadPool )
, m_pQueue( pQueue )
, m_aThreadId( aThreadId )
@@ -114,7 +114,7 @@ namespace cppu_threadpool {
void ORequestThread::setTask( JobQueue *pQueue,
const ByteSequence &aThreadId,
- sal_Bool bAsynchron )
+ bool bAsynchron )
{
m_pQueue = pQueue;
m_aThreadId = aThreadId;
@@ -169,7 +169,7 @@ namespace cppu_threadpool {
m_pQueue->enter(
sal::static_int_cast< sal_Int64 >(
reinterpret_cast< sal_IntPtr >(this)),
- sal_True );
+ true );
if( m_pQueue->isEmpty() )
{