diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2000-09-25 18:18:29 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2000-09-25 18:18:29 +0000 |
commit | c89d5da5dd8d4398598e24cf3e56ad71b8e0f6c7 (patch) | |
tree | 3e2d146a8f58c5ea761633a35a261e2f22515ec6 /TAO/tao/params.i | |
parent | feb766e0ee53b5e4069b44e37db0b90b073a4cf3 (diff) | |
download | ATCD-c89d5da5dd8d4398598e24cf3e56ad71b8e0f6c7.tar.gz |
ChangeLogTag:Mon Sep 25 11:09:20 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao/params.i')
-rw-r--r-- | TAO/tao/params.i | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/params.i b/TAO/tao/params.i index 2856f13e65c..1cc26a6f065 100644 --- a/TAO/tao/params.i +++ b/TAO/tao/params.i @@ -119,19 +119,19 @@ TAO_ORB_Parameters::service_port (MCAST_SERVICEID service_id) const } ACE_INLINE void -TAO_ORB_Parameters::mcast_discovery_endpoint (const ACE_CString &mde) +TAO_ORB_Parameters::mcast_discovery_endpoint (const char *mde) { - this->mcast_discovery_endpoint_ = mde; + this->mcast_discovery_endpoint_ = CORBA::string_dup (mde); } ACE_INLINE const char * TAO_ORB_Parameters::mcast_discovery_endpoint (void) const { - return this->mcast_discovery_endpoint_.c_str (); + return this->mcast_discovery_endpoint_.in (); } ACE_INLINE void -TAO_ORB_Parameters::default_init_ref (const ACE_CString &default_init_ref) +TAO_ORB_Parameters::default_init_ref (const char *default_init_ref) { this->default_init_ref_ = default_init_ref; } |