diff options
author | okellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-01-26 19:05:52 +0000 |
---|---|---|
committer | okellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-01-26 19:05:52 +0000 |
commit | 10a8154a623e677311342a8c858dab3bcf212445 (patch) | |
tree | f06cd8ea449778bf76a70ae43a9bbd33972e274a | |
parent | c246acf3297262da875277a9d40626067b86d56e (diff) | |
download | ATCD-10a8154a623e677311342a8c858dab3bcf212445.tar.gz |
ChangeLogTag:2002-01-26 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 7 | ||||
-rw-r--r-- | TAO/tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index c2c2627b2f8..3d02a85a842 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,10 @@ +2002-01-26 Oliver Kellogg <oliver.kellogg@sysde.eads.net> + + * tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp + (ORT_test_IORInterceptor_ORBInitializer::post_init): + Removed TAO_ENV_ARG_DEFN and corrected usage of + TAO_ENV_ARG_PARAMETER. + Fri Jan 25 19:05:24 2002 Ossama Othman <ossama@uci.edu> * tests/OBV/Forward/server.dsp: diff --git a/TAO/tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp b/TAO/tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp index 1c547153205..9ca7443b52c 100644 --- a/TAO/tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp +++ b/TAO/tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp @@ -22,8 +22,6 @@ ORT_test_IORInterceptor_ORBInitializer::post_init ( TAO_ENV_ARG_DECL) ACE_THROW_SPEC ((CORBA::SystemException)) { - TAO_ENV_ARG_DEFN; - PortableInterceptor::IORInterceptor_ptr ort_test_interceptor; ACE_NEW_THROW_EX (ort_test_interceptor, ORT_test_IORInterceptor (), @@ -38,7 +36,7 @@ ORT_test_IORInterceptor_ORBInitializer::post_init ( ort_test_interceptor; info->add_ior_interceptor (ior_interceptor.in () - TAO_ENV_ARG_DECL); + TAO_ENV_ARG_PARAMETER); ACE_CHECK; } |