summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorSander Vesik <svesik@openoffice.org>2004-04-21 12:43:58 +0000
committerSander Vesik <svesik@openoffice.org>2004-04-21 12:43:58 +0000
commite024d5bca5b66b83cf64fc62d86ce129387c6a37 (patch)
tree593c3bb0280cae964b762e4d95167457cd27026f /bridges
parent03efe9a213eb8616f3df0250b330087968f62260 (diff)
INTEGRATION: CWS ooo20040329 (1.5.10); FILE MERGED
2004/03/17 10:27:25 waratah 1.5.10.1: #i1858# alter the order of some definitions to fix some -Wall warnings
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/remote/static/remote.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/bridges/source/remote/static/remote.cxx b/bridges/source/remote/static/remote.cxx
index 1de3dd6c6ae0..9eae991feb1f 100644
--- a/bridges/source/remote/static/remote.cxx
+++ b/bridges/source/remote/static/remote.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: remote.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: hr $ $Date: 2004-02-04 13:42:49 $
+ * last change: $Author: svesik $ $Date: 2004-04-21 13:43:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -64,7 +64,6 @@
# endif
#endif
#include <assert.h>
-
#include <bridges/remote/remote.hxx>
#include <bridges/remote/counter.hxx>
@@ -78,10 +77,10 @@ Remote2RemoteStub::Remote2RemoteStub( rtl_uString *pOid,
typelib_InterfaceTypeDescription *pType,
uno_Environment *pEnvRemote,
requestClientSideDispatcher dispatch ) :
- m_pType( (typelib_InterfaceTypeDescription * ) pType ),
- m_pEnvRemote( pEnvRemote ),
m_sOid( pOid ),
+ m_pType( (typelib_InterfaceTypeDescription * ) pType ),
m_nRef( 1 ),
+ m_pEnvRemote( pEnvRemote ),
m_dispatch( dispatch ),
m_nReleaseRemote( 1 )
{