summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog15
-rw-r--r--TAO/orbsvcs/orbsvcs/ESF/ESF_Busy_Lock.h8
-rw-r--r--TAO/tao/Abstract_Servant_Base.h2
-rw-r--r--TAO/tao/Object.h5
-rw-r--r--TAO/tao/RTPortableServer/RT_Acceptor_Filters.h2
-rw-r--r--TAO/tao/TAO_Internal.h8
6 files changed, 23 insertions, 17 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 7b82dfcac03..e4e73706223 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Tue Sep 26 05:32:22 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * orbsvcs/orbsvcs/ESF/ESF_Busy_Lock.h:
+ * tao/Abstract_Servant_Base.h:
+ * tao/Object.h:
+ * tao/TAO_Internal.h:
+ * tao/RTPortableServer/RT_Acceptor_Filters.h:
+ Fixed doxygen warnings
+
Wed Sep 25 19:02:21 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp:
@@ -39,7 +48,7 @@ Wed Sep 25 17:12:06 2002 Jeff Parsons <parsons@cs.wustl.edu>
This file tests the acceptance of C++ keywords used as identifiers,
which is legal (the IDL compiler prepends '_cxx_'). However, two of
these, 'private' and 'public' are now IDL keywords as well, and so
- are no longer legal identifiers. They have been commented out of the
+ are no longer legal identifiers. They have been commented out of the
test IDL file.
Wed Sep 25 17:05:32 2002 Jeff Parsons <parsons@cs.wustl.edu>
@@ -63,7 +72,7 @@ Wed Sep 25 16:12:27 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/Makefile.dependencies:
Add MAKEFILE=Makefile.dependencies so
- that recursive makes will work properly.
+ that recursive makes will work properly.
Patches and comments sent in by Craig Rodrigues <crodrigu@bbn.com>.
@@ -203,7 +212,7 @@ Wed Sep 25 11:12:59 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/include/ast_eventtype.h:
* TAO_IDL/include/ast_eventtype_fwd.h:
- New files to complete the support of CORBA Components and related
+ New files to complete the support of CORBA Components and related
types in the IDL compiler.
* TAO_IDL/be/be_visitor_interface/interceptors_sh.cpp:
diff --git a/TAO/orbsvcs/orbsvcs/ESF/ESF_Busy_Lock.h b/TAO/orbsvcs/orbsvcs/ESF/ESF_Busy_Lock.h
index ded2fd2fa2d..01249a32160 100644
--- a/TAO/orbsvcs/orbsvcs/ESF/ESF_Busy_Lock.h
+++ b/TAO/orbsvcs/orbsvcs/ESF/ESF_Busy_Lock.h
@@ -27,12 +27,10 @@
* One of the synchronization protocols used in the event services
* uses the following protocol:
* <UL>
- * <LI> To acquire the lock the @param busy method of the object is
- * invoked.
- * <LI> To release the lock the @param idle method of the object is
- * invoked.
+ * <LI> To acquire the lock the @c busy method of the object is invoked.
+ * <LI> To release the lock the @c idle method of the object is invoked.
* <LI> Any changes performed while the lock is held are delayed until
- * all the locks are released, i.e. the last call to @param idle
+ * all the locks are released, i.e. the last call to @c idle
* executes the changes.
* </UL>
*/
diff --git a/TAO/tao/Abstract_Servant_Base.h b/TAO/tao/Abstract_Servant_Base.h
index b7a3c1a4444..501348614ff 100644
--- a/TAO/tao/Abstract_Servant_Base.h
+++ b/TAO/tao/Abstract_Servant_Base.h
@@ -77,7 +77,7 @@ protected:
* Find the operation, cast the type to the most derived type,
* demarshall all the parameters from the request and finally
* invokes the operation, storing the results and out parameters (if
- * any) or the exceptions thrown into @param request.
+ * any) or the exceptions thrown into @a request.
*/
virtual void _dispatch (TAO_ServerRequest &request,
void *servant_upcall
diff --git a/TAO/tao/Object.h b/TAO/tao/Object.h
index 19553c26269..beee6b914d0 100644
--- a/TAO/tao/Object.h
+++ b/TAO/tao/Object.h
@@ -77,7 +77,7 @@ public:
// making such calls, but may be overridden when it appears
// appropriate.
- /// determine if we are of the type specified by the "logical_type_id"
+ /// Determine if we are of the type specified by the "logical_type_id"
virtual CORBA::Boolean _is_a (const char *logical_type_id
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
@@ -241,7 +241,6 @@ public:
/// Get the proxy broker.
virtual TAO_Object_Proxy_Broker *_proxy_broker (void);
- //@}
protected:
@@ -321,7 +320,7 @@ public:
static CORBA::Object_ptr tao_duplicate (CORBA::Object_ptr);
static void tao_release (CORBA::Object_ptr);
static CORBA::Object_ptr tao_nil (void);
- static CORBA::Object_ptr tao_narrow (CORBA::Object *
+ static CORBA::Object_ptr tao_narrow (CORBA::Object *
ACE_ENV_ARG_DECL_NOT_USED);
static CORBA::Object * tao_upcast (void *);
diff --git a/TAO/tao/RTPortableServer/RT_Acceptor_Filters.h b/TAO/tao/RTPortableServer/RT_Acceptor_Filters.h
index 9cf0f91e46a..f4b93d409ea 100644
--- a/TAO/tao/RTPortableServer/RT_Acceptor_Filters.h
+++ b/TAO/tao/RTPortableServer/RT_Acceptor_Filters.h
@@ -46,7 +46,7 @@
class TAO_Acceptor;
/**
- * @class RTCORBA::ServerProtocolPolicy Acceptor_Filter.
+ * @class TAO_Server_Protocol_Acceptor_Filter
*
* @brief Populates mprofile with endpoints selected based on the
* RTCORBA::ServerProtocolPolicy.
diff --git a/TAO/tao/TAO_Internal.h b/TAO/tao/TAO_Internal.h
index 426dd70bcea..5b5360b73b3 100644
--- a/TAO/tao/TAO_Internal.h
+++ b/TAO/tao/TAO_Internal.h
@@ -69,11 +69,11 @@ private:
* called (see open_services()). It is fully thread-safe. Return 0
* if successful, -1 with errno set if failure. You can provide
* your program a set of default `svc.conf' entries by setting
- * \param ignore_default_svc_conf_file to non-zero and use
- * \param default_svc_conf_entries before calling open_services().
- * In addition, you can \param skip_service_config_open altogether,
+ * @a ignore_default_svc_conf_file to non-zero and use
+ * default_svc_conf_entries() before calling open_services().
+ * In addition, you can @a skip_service_config_open altogether,
* which is important if the ORB is linked in via the \param
- * ACE_Service_Configuator, which is non-reentrant.
+ * ACE_Service_Configurator, which is non-reentrant.
*/
static int open_services_i (int &argc,
char **argv,