summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoredwardgt <edwardgt@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-09-26 04:18:29 +0000
committeredwardgt <edwardgt@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-09-26 04:18:29 +0000
commitaa30d6e94a7b704e0f4e523262dbefea4b13e2cc (patch)
tree4df826c7cef3cfce0ba0cc4bddc3151e966ffa2a
parent304bc1681d8af13973509ab61e6e8273c35e9648 (diff)
downloadATCD-aa30d6e94a7b704e0f4e523262dbefea4b13e2cc.tar.gz
ChangeLogTag: Thu Sep 25 23:15:06 2003 George Edwards <g.edwards@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tests/OBV/Supports/Supports_Test_impl.cpp7
2 files changed, 10 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 92bc4f972c5..7680e4c19c0 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Thu Sep 25 23:15:06 2003 George Edwards <g.edwards@vanderbilt.edu>
+
+ * tests/OBV/Supports/Supports_Test_impl.cpp:
+
+ Added CORBA environment variable parameter to constructor
+ calls.
+
Thu Sep 25 16:08:50 2003 Irfan Pyarali <irfan@oomworks.com>
* tao\PortableServer\Object_Adapter.cpp (servant_cleanup):
diff --git a/TAO/tests/OBV/Supports/Supports_Test_impl.cpp b/TAO/tests/OBV/Supports/Supports_Test_impl.cpp
index 16229a9ee1d..83db36a5b70 100644
--- a/TAO/tests/OBV/Supports/Supports_Test_impl.cpp
+++ b/TAO/tests/OBV/Supports/Supports_Test_impl.cpp
@@ -85,8 +85,7 @@ test_impl::test_impl (CORBA::ORB_ptr orb) : orb_ (CORBA::ORB::_duplicate (orb))
test_impl::~test_impl (void)
{
- this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
+ this->orb_->shutdown (0);
}
void
@@ -123,7 +122,7 @@ test_impl::pass_obj_graph_out (
CORBA::SystemException))
{
vt_graph_impl * the_vt_graph = 0;
- ACE_NEW (the_vt_graph, vt_graph_impl (4));
+ ACE_NEW (the_vt_graph, vt_graph_impl (4 ACE_ENV_ARG_PARAMETER));
graph_param = the_vt_graph->_this (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
@@ -142,7 +141,7 @@ test_impl::pass_vt_graph_out (
{
vt_graph_impl * the_vt_graph = 0;
- ACE_NEW (the_vt_graph, vt_graph_impl (4));
+ ACE_NEW (the_vt_graph, vt_graph_impl (4 ACE_ENV_ARG_PARAMETER));
vt_graph_param = the_vt_graph;
ACE_ASSERT (vt_graph_param->size (ACE_ENV_SINGLE_ARG_PARAMETER) == 4);