summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorSander Vesik <svesik@openoffice.org>2004-04-21 12:46:50 +0000
committerSander Vesik <svesik@openoffice.org>2004-04-21 12:46:50 +0000
commit6a312e642271c6ebe25f47db18932d2103cf444d (patch)
tree952ee7f5a44f6e66ad9105d323472896f0cfd538 /bridges
parent4f20ef95f73f05ac8f3743168394e44a6a84e5a9 (diff)
INTEGRATION: CWS ooo20040329 (1.12.90); FILE MERGED
2004/03/17 10:21:09 waratah 1.12.90.1: #i1858# alter the order of some definitions to fix some -Wall warnings
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/remote/urp/urp_writer.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/bridges/source/remote/urp/urp_writer.cxx b/bridges/source/remote/urp/urp_writer.cxx
index a765ad591e0a..1158a6094350 100644
--- a/bridges/source/remote/urp/urp_writer.cxx
+++ b/bridges/source/remote/urp/urp_writer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: urp_writer.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: vg $ $Date: 2003-04-15 16:29:18 $
+ * last change: $Author: svesik $ $Date: 2004-04-21 13:46:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,7 +59,6 @@
*
************************************************************************/
#include <stdio.h>
-
#ifndef _OSL_TIME_H_
#include <osl/time.h>
#endif
@@ -91,12 +90,12 @@ namespace bridges_urp {
OWriterThread::OWriterThread( remote_Connection *pConnection, urp_BridgeImpl *pBridgeImpl,
uno_Environment *pEnvRemote) :
- m_pConnection( pConnection ),
m_bAbort( sal_False ),
- m_pBridgeImpl( pBridgeImpl ),
- m_pEnvRemote( pEnvRemote ),
m_bInBlockingWait( sal_False ),
- m_bEnterBlockingWait( sal_False )
+ m_bEnterBlockingWait( sal_False ),
+ m_pConnection( pConnection ),
+ m_pBridgeImpl( pBridgeImpl ),
+ m_pEnvRemote( pEnvRemote )
{
m_oslCondition = osl_createCondition();
@@ -219,7 +218,6 @@ void OWriterThread::insertReleaseRemoteCall(
***/
void OWriterThread::executeReleaseRemoteCalls()
{
- sal_Bool bFound = sal_True;
::std::list< struct RemoteReleaseCall > lstReleaseCalls;
{
::osl::MutexGuard guard( m_releaseCallMutex );