summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2001-03-19 15:54:15 +0000
committerJörg Budischewski <jbu@openoffice.org>2001-03-19 15:54:15 +0000
commitad5d78e20c1904c22bb2dd676bfe186356607f9f (patch)
tree55bdb42f8aadb75a519c16d0c85235bcf9252539
parentcea70b7ca5a89bd8fff40436a493654b5520adb1 (diff)
CC-sparc has problems with arg naming
-rw-r--r--sal/inc/osl/pipe.hxx15
-rw-r--r--sal/inc/osl/socket.hxx5
2 files changed, 11 insertions, 9 deletions
diff --git a/sal/inc/osl/pipe.hxx b/sal/inc/osl/pipe.hxx
index 861aecaa3..58c57dea7 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 6e89605a6..dbc0d8420 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 )