summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>1999-04-11 20:35:50 +0000
committerbala <balanatarajan@users.noreply.github.com>1999-04-11 20:35:50 +0000
commit30d5cdf91d0f531ae84258793953b497b4b4738e (patch)
treecdf668664f7c017dfd50b1f1e10e80692e5cb52d
parent38a2c0d3f0a725769cbc11f38aa7ff2ebab821d2 (diff)
downloadATCD-30d5cdf91d0f531ae84258793953b497b4b4738e.tar.gz
Fixed some warnings
-rw-r--r--TAO/examples/POA/DSI/Database_i.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/TAO/examples/POA/DSI/Database_i.cpp b/TAO/examples/POA/DSI/Database_i.cpp
index 0fdaa22abe1..40f31c76262 100644
--- a/TAO/examples/POA/DSI/Database_i.cpp
+++ b/TAO/examples/POA/DSI/Database_i.cpp
@@ -48,12 +48,11 @@ DatabaseImpl::Entry::invoke (CORBA::ServerRequest_ptr request,
const char *operation = request->operation ();
if (ACE_OS::strcmp (operation, "_is_a") == 0)
- this->_is_a (request, ACE_TRY_ENV);
+ this->is_a (request, ACE_TRY_ENV);
else
{
ACE_THROW (CORBA::NO_IMPLEMENT (CORBA::COMPLETED_NO));
- return;
}
ACE_TRY_CHECK;
}
@@ -66,7 +65,7 @@ DatabaseImpl::Entry::invoke (CORBA::ServerRequest_ptr request,
}
void
-DatabaseImpl::Entry::_is_a (CORBA::ServerRequest_ptr request,
+DatabaseImpl::Entry::is_a (CORBA::ServerRequest_ptr request,
CORBA::Environment &ACE_TRY_ENV)
{
CORBA::NVList_ptr list;