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
This commit is contained in:
Sander Vesik 2004-04-21 11:56:50 +00:00
parent 3040467b08
commit db83509ccf

View file

@ -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 );
}