diff options
-rw-r--r-- | TAO/ChangeLog | 5 | ||||
-rw-r--r-- | TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp | 4 | ||||
-rw-r--r-- | TAO/tao/DynamicInterface/DII_Invocation_Adapter.h | 8 |
3 files changed, 8 insertions, 9 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 17b75863e6c..bbf2d27f4d6 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 2 13:03:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl> + + * tao/DynamicInterface/DII_Invocation_Adapter.{h,cpp}: + Doxygen improvements + Wed Aug 2 12:58:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl> * performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl: diff --git a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp index 1cf3a172f6a..c65c9ee547d 100644 --- a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp +++ b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp @@ -29,7 +29,7 @@ namespace TAO size_t op_len, CORBA::ExceptionList *excp, CORBA::Request *r, - Invocation_Mode m) + Invocation_Mode mode) : Invocation_Adapter (target, args, @@ -38,7 +38,7 @@ namespace TAO op_len, 0, // Collocation Proxy broker pointer TAO_TWOWAY_INVOCATION, - m) + mode) , exception_list_ (excp) , request_ (r) { diff --git a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h index 888601f9793..ac5b8e9dfd7 100644 --- a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h +++ b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h @@ -76,12 +76,6 @@ namespace TAO * is an optimization which helps us to avoid calling strlen () * while creating a message format. * - * @param cpb The collocation proxy broker for the target if one - * exists. - * - * @param type The operation type which could be a oneway or two - * way operation. this information is availbe in the IDL file. - * * @param mode Invocation mode. This information is also available * in the IDL file and in the generated code. */ @@ -92,7 +86,7 @@ namespace TAO size_t op_len, CORBA::ExceptionList *exception, CORBA::Request *r, - Invocation_Mode m = TAO_DII_INVOCATION); + Invocation_Mode mode = TAO_DII_INVOCATION); virtual ~DII_Invocation_Adapter (void) {} |