diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2001-03-19 15:54:15 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2001-03-19 15:54:15 +0000 |
commit | aeeb4e7eeb6a7df03a1f29fc3faaa8128bca3da7 (patch) | |
tree | 0d41ee769ddb61510b2f502cbb3e8c3ba0187776 | |
parent | 20eef0c1f56a86a6435f25a914fd991f9220ad6f (diff) |
CC-sparc has problems with arg naming
-rw-r--r-- | sal/inc/osl/pipe.hxx | 15 | ||||
-rw-r--r-- | sal/inc/osl/socket.hxx | 5 |
2 files changed, 11 insertions, 9 deletions
diff --git a/sal/inc/osl/pipe.hxx b/sal/inc/osl/pipe.hxx index 2257a4831cc4..8268bd753f52 100644 --- a/sal/inc/osl/pipe.hxx +++ b/sal/inc/osl/pipe.hxx @@ -2,9 +2,9 @@ * * $RCSfile: pipe.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jbu $ $Date: 2001-03-14 16:28:31 $ + * last change: $Author: jbu $ $Date: 2001-03-19 16:54:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -186,9 +186,10 @@ namespace osl inline StreamPipe::StreamPipe(){} //______________________________________________________________________________ - inline StreamPipe::StreamPipe(oslPipe Pipe) - : Pipe( Pipe ) - {} + inline StreamPipe::StreamPipe(oslPipe hPipe) + : Pipe( hPipe ) + { + } //______________________________________________________________________________ inline StreamPipe::StreamPipe(const ::rtl::OUString& strName, oslPipeOptions Options, const Security &rSec ) @@ -201,8 +202,8 @@ namespace osl {} //______________________________________________________________________________ - inline StreamPipe::StreamPipe(const StreamPipe& Pipe) - : Pipe( Pipe ) + inline StreamPipe::StreamPipe(const StreamPipe& aPipe) + : Pipe( aPipe ) {} //______________________________________________________________________________ inline StreamPipe::StreamPipe( oslPipe pipe, __sal_NoAcquire noacquire ) diff --git a/sal/inc/osl/socket.hxx b/sal/inc/osl/socket.hxx index 21914298f74b..7d5395e8a512 100644 --- a/sal/inc/osl/socket.hxx +++ b/sal/inc/osl/socket.hxx @@ -2,9 +2,9 @@ * * $RCSfile: socket.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jbu $ $Date: 2001-03-15 11:07:36 $ + * last change: $Author: jbu $ $Date: 2001-03-19 16:54:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -175,6 +175,7 @@ namespace osl inline SocketAddr & SAL_CALL SocketAddr::operator= (const SocketAddr& Addr) { *this = (Addr.getHandle()); + return *this; } inline SocketAddr & SAL_CALL SocketAddr::assign( oslSocketAddr Addr, __osl_socket_NoCopy nocopy ) |