diff options
author | Sander Vesik <svesik@openoffice.org> | 2004-04-21 11:56:50 +0000 |
---|---|---|
committer | Sander Vesik <svesik@openoffice.org> | 2004-04-21 11:56:50 +0000 |
commit | db83509ccf5a9d0640d0de5d87c5206887458c57 (patch) | |
tree | 004f2bebe98cc1e71ef252845947852c64f1c9d4 | |
parent | 3040467b08c79b13c4b44a16339f8b6855f6d032 (diff) |
INTEGRATION: CWS ooo20040329 (1.1.1.1.140); FILE MERGED
2004/03/17 11:38:59 waratah 1.1.1.1.140.1: #i1858# alter the order of some definitions to fix some -Wall warnings
-rw-r--r-- | cppu/source/threadpool/jobqueue.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppu/source/threadpool/jobqueue.cxx b/cppu/source/threadpool/jobqueue.cxx index 46f263042221..86a5eed599b9 100644 --- a/cppu/source/threadpool/jobqueue.cxx +++ b/cppu/source/threadpool/jobqueue.cxx @@ -2,9 +2,9 @@ * * $RCSfile: jobqueue.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:25:52 $ + * last change: $Author: svesik $ $Date: 2004-04-21 12:56:50 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -68,9 +68,9 @@ using namespace ::osl; namespace cppu_threadpool { JobQueue::JobQueue( sal_Bool bAsynchron ) : - m_cndWait( osl_createCondition() ), + m_nToDo( 0 ), m_bSuspended( sal_False ), - m_nToDo( 0 ) + m_cndWait( osl_createCondition() ) { osl_resetCondition( m_cndWait ); } |