From 9387146f51bf19d8ab3cd5fe62ed7c1a1272590c Mon Sep 17 00:00:00 2001 From: jcej Date: Fri, 19 Feb 1999 00:16:26 +0000 Subject: *** empty log message *** --- docs/tutorials/005/client_handler.cpp | 4 ++-- docs/tutorials/005/page05.html | 4 ++-- docs/tutorials/005/page06.html | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/tutorials') diff --git a/docs/tutorials/005/client_handler.cpp b/docs/tutorials/005/client_handler.cpp index 3d4ef08dc38..8466992b6a0 100644 --- a/docs/tutorials/005/client_handler.cpp +++ b/docs/tutorials/005/client_handler.cpp @@ -63,7 +63,7 @@ Client_Handler::destroy (void) The Client_Acceptor instance pointer is cast to a void* and given to us here. We'll use that to avoid some global data... */ int -Client_Handler::open (void *acceptor) +Client_Handler::open (void *_acceptor) { /* Convert the void* to a Client_Acceptor*. You should probably use those fancy ACE_*_cast macros but I can never remember how/when @@ -71,7 +71,7 @@ Client_Handler::open (void *acceptor) without compiler warnings be very sure of what you're doing when you do this kind of thing. That's where the new-style cast operators can save you. */ - Client_Acceptor *acceptor = (Client_Acceptor *) acceptor; + Client_Acceptor *acceptor = (Client_Acceptor *) _acceptor; /* Our reactor reference will be set when we register ourselves but I decided to go ahead and set it here. No good reason really... */ diff --git a/docs/tutorials/005/page05.html b/docs/tutorials/005/page05.html index 0960c9485cb..388a421eff6 100644 --- a/docs/tutorials/005/page05.html +++ b/docs/tutorials/005/page05.html @@ -88,7 +88,7 @@ void The Client_Acceptor instance pointer is cast to a void* and given to us here. We'll use that to avoid some global data... */ int -Client_Handler::open (void *acceptor) +Client_Handler::open (void *_acceptor) { /* Convert the void* to a Client_Acceptor*. You should probably use those fancy ACE_*_cast macros but I can never remember how/when @@ -96,7 +96,7 @@ int without compiler warnings be very sure of what you're doing when you do this kind of thing. That's where the new-style cast operators can save you. */ - Client_Acceptor *acceptor = (Client_Acceptor *) acceptor; + Client_Acceptor *acceptor = (Client_Acceptor *) _acceptor; /* Our reactor reference will be set when we register ourselves but I decided to go ahead and set it here. No good reason really... */ diff --git a/docs/tutorials/005/page06.html b/docs/tutorials/005/page06.html index e7588a0ec36..8bf4bef5090 100644 --- a/docs/tutorials/005/page06.html +++ b/docs/tutorials/005/page06.html @@ -128,7 +128,7 @@ UNSHAR : # sh combine.shar CLEAN : realclean - rm -f hdr bodies *.pre *.pst + rm -f hdr bodies *.pre *.pst .depend #---------------------------------------------------------------------------- # Dependencies -- cgit v1.2.1