summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Time/TAO_UTO.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Time/TAO_UTO.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.cpp b/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.cpp
index 6a00579ab62..d9957753beb 100644
--- a/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.cpp
+++ b/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.cpp
@@ -169,7 +169,7 @@ TAO_UTO::time_to_interval (CosTime::UTO_ptr uto,
ACE_NEW_THROW_EX (tio,
TAO_TIO (uto->time (ACE_TRY_ENV),
this->time (ACE_TRY_ENV)),
- CORBA::NO_MEMORY ());
+ CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
ACE_TRY_CHECK;
}
@@ -178,7 +178,7 @@ TAO_UTO::time_to_interval (CosTime::UTO_ptr uto,
ACE_NEW_THROW_EX (tio,
TAO_TIO (this->time (ACE_TRY_ENV),
uto->time (ACE_TRY_ENV)),
- CORBA::NO_MEMORY ());
+ CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
ACE_TRY_CHECK;
}
@@ -215,7 +215,7 @@ TAO_UTO::interval (CORBA::Environment &ACE_TRY_ENV)
ACE_NEW_THROW_EX (tio,
TAO_TIO (lower,
upper),
- CORBA::NO_MEMORY ());
+ CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
ACE_TRY_CHECK;
}
ACE_CATCHANY