diff options
author | jcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-19 00:16:26 +0000 |
---|---|---|
committer | jcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-19 00:16:26 +0000 |
commit | 9387146f51bf19d8ab3cd5fe62ed7c1a1272590c (patch) | |
tree | 48bd1ce1b4fef37497e2dcba75160d4fff59560d /docs | |
parent | f0695bdac312271e93124937d24b8856eaa8fad9 (diff) | |
download | ATCD-9387146f51bf19d8ab3cd5fe62ed7c1a1272590c.tar.gz |
*** empty log message ***
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorials/005/client_handler.cpp | 4 | ||||
-rw-r--r-- | docs/tutorials/005/page05.html | 4 | ||||
-rw-r--r-- | docs/tutorials/005/page06.html | 2 |
3 files changed, 5 insertions, 5 deletions
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... */</font> int -<font color=#008888>Client_Handler::open</font> (void *acceptor) +<font color=#008888>Client_Handler::open</font> (void *_acceptor) { <font color=red>/* 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. */</font> - Client_Acceptor *acceptor = (Client_Acceptor *) acceptor; + Client_Acceptor *acceptor = (Client_Acceptor *) _acceptor; <font color=red>/* Our reactor reference will be set when we register ourselves but I decided to go ahead and set it here. No good reason really... */</font> 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 |