summaryrefslogtreecommitdiff
path: root/TAO/tests/Faults/ping_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Faults/ping_i.cpp')
-rw-r--r--TAO/tests/Faults/ping_i.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/Faults/ping_i.cpp b/TAO/tests/Faults/ping_i.cpp
index ec8e6b64105..e8129cce447 100644
--- a/TAO/tests/Faults/ping_i.cpp
+++ b/TAO/tests/Faults/ping_i.cpp
@@ -9,28 +9,28 @@
ACE_RCSID(Faults, test_i, "$Id$")
void
-PingObject_i::ping (PingObject_ptr callback,
- CORBA::Environment &ACE_TRY_ENV)
+PingObject_i::ping (PingObject_ptr callback
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- callback->pong (ACE_TRY_ENV);
+ callback->pong (TAO_ENV_SINGLE_ARG_PARAMETER);
}
void
-PingObject_i::pong (CORBA::Environment &)
+PingObject_i::pong (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
void
-PingObject_i::shutdown (CORBA::Environment &ACE_TRY_ENV)
+PingObject_i::shutdown (TAO_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->orb_->shutdown (0, ACE_TRY_ENV);
+ this->orb_->shutdown (0 TAO_ENV_ARG_PARAMETER);
}
PortableServer::POA_ptr
-PingObject_i::_default_POA (CORBA::Environment &)
+PingObject_i::_default_POA (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return PortableServer::POA::_duplicate (this->poa_.in ());