summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-10-29 17:30:24 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-10-29 17:30:24 +0000
commit99ab584ab1de2dd5888c34c9f4809e4f67992bf0 (patch)
tree094a50f807d800e677dc07b475d9ec6727cf5621
parent40fd68df092ea46b8e1270a03693e8a66e6ff868 (diff)
downloadATCD-99ab584ab1de2dd5888c34c9f4809e4f67992bf0.tar.gz
ChangeLogTag: Wed Oct 29 11:28:36 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.cpp2
-rw-r--r--TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.h2
3 files changed, 11 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 23cfb018e7d..692af4ed55c 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Wed Oct 29 11:28:36 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tao/Valuetype/AbstractBase_Invocation_Adapter.cpp:
+ * tao/Valuetype/AbstractBase_Invocation_Adapter.h:
+
+ Added 'const' qualifier to operation name parameter in the
+ constructor, to correlate with the signature of the base
+ class constructor.
+
Wed Oct 29 11:14:33 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/Portable_Interceptors/PICurrent/ClientRequestInterceptor.cpp:
diff --git a/TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.cpp b/TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.cpp
index 6b4889453f9..b3c8bdba2b8 100644
--- a/TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.cpp
+++ b/TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.cpp
@@ -12,7 +12,7 @@ namespace TAO
CORBA::AbstractBase_ptr target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
Collocation_Proxy_Broker *p,
Invocation_Type type,
diff --git a/TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.h b/TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.h
index 533968956a8..20931323982 100644
--- a/TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.h
+++ b/TAO/tao/Valuetype/AbstractBase_Invocation_Adapter.h
@@ -47,7 +47,7 @@ namespace TAO
CORBA::AbstractBase_ptr target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
Collocation_Proxy_Broker *cpb,
TAO::Invocation_Type type = TAO_TWOWAY_INVOCATION,