summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-06 21:17:17 +0000
committernaga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-06 21:17:17 +0000
commit71dff81161b5fbe2ed8f9012ffbf9390ce42d7fa (patch)
tree03fe14a3ed499d70715f5be1620173d19fd66e8d
parent76686766de2c17183fb04e6d833d2df84d9c66eb (diff)
downloadATCD-71dff81161b5fbe2ed8f9012ffbf9390ce42d7fa.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-98c5
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/AVStreams_i.cpp6
2 files changed, 8 insertions, 3 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index a4dee7a19ec..bc7a4ba3320 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,8 @@
+1998-12-06 Nagarajan Surendran <naga@polka.cs.wustl.edu>
+
+ * orbsvcs/orbsvcs/AV/AVStreams_i.cpp : Fixed the TAO_THROW
+ compilation errors. Thanks to David for pointing this out.
+
Sun Dec 6 14:13:52 1998 Ossama Othman <ossama@debian.org>
* TAO_IDL/tao_idl.1: Created a man page for tao_idl based on
diff --git a/TAO/orbsvcs/orbsvcs/AV/AVStreams_i.cpp b/TAO/orbsvcs/orbsvcs/AV/AVStreams_i.cpp
index 8406dd90d13..fcc55c78a4a 100644
--- a/TAO/orbsvcs/orbsvcs/AV/AVStreams_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/AV/AVStreams_i.cpp
@@ -140,7 +140,7 @@ TAO_Basic_StreamCtrl::set_flow_connection (const char *flow_name,
this->flows_ [this->flow_count_++] = CORBA::string_dup (flow_name);
TAO_String_Hash_Key flow_name_key (flow_name);
if (this->flow_map_.bind (flow_name_key,flow_connection) != 0)
- TAO_THROW_ENV (AVStreams::noSuchFlow,env);// is this right?
+ TAO_THROW_ENV (new AVStreams::noSuchFlow (),env);// is this right?
}
// ----------------------------------------------------------------------
@@ -569,7 +569,7 @@ TAO_StreamEndPoint::add_fep (CORBA::Object_ptr the_fep,
// put the flowname and the flowendpoint in a hashtable.
TAO_String_Hash_Key fep_name_key (flow_name);
if (this->fep_map_.bind (fep_name_key,the_fep) != 0)
- TAO_THROW_ENV_RETURN (AVStreams::streamOpFailed,env,0);
+ TAO_THROW_ENV_RETURN (new AVStreams::streamOpFailed (),env,0);
// increment the flow count.
this->flow_count_++;
@@ -1062,7 +1062,7 @@ TAO_MMDevice::add_fdev (CORBA::Object_ptr the_fdev,
// put the flowname and the fdev in a hashtable.
TAO_String_Hash_Key fdev_name_key (flow_name);
if (this->fdev_map_.bind (fdev_name_key,the_fdev) != 0)
- TAO_THROW_ENV_RETURN (AVStreams::streamOpFailed,env,0);
+ TAO_THROW_ENV_RETURN (new AVStreams::streamOpFailed (),env,0);
// increment the flow count.
this->flow_count_++;