summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/Dynamic_Implementation.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-06-02 20:02:17 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-06-02 20:02:17 +0000
commitbe959f3d9b491984ff2fb3efeb90fe8db2172b2d (patch)
treedfb8ce57904209d9f94746664978dca15a49935a /TAO/tao/DynamicInterface/Dynamic_Implementation.cpp
parent6d2e23afbf43867d82e4e15f4f48bc8b4b810b2d (diff)
downloadATCD-be959f3d9b491984ff2fb3efeb90fe8db2172b2d.tar.gz
ChangeLogTag:Sat Jun 2 13:05:20 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'TAO/tao/DynamicInterface/Dynamic_Implementation.cpp')
-rw-r--r--TAO/tao/DynamicInterface/Dynamic_Implementation.cpp18
1 files changed, 7 insertions, 11 deletions
diff --git a/TAO/tao/DynamicInterface/Dynamic_Implementation.cpp b/TAO/tao/DynamicInterface/Dynamic_Implementation.cpp
index 5f17a5598c8..3234ee996a3 100644
--- a/TAO/tao/DynamicInterface/Dynamic_Implementation.cpp
+++ b/TAO/tao/DynamicInterface/Dynamic_Implementation.cpp
@@ -68,25 +68,21 @@ TAO_DynamicImplementation::_create_stub (CORBA::Environment &ACE_TRY_ENV)
PortableServer::POA_var poa = poa_current_impl->get_POA (ACE_TRY_ENV);
ACE_CHECK_RETURN (0);
- CORBA::RepositoryId interface =
+ CORBA::RepositoryId pinterface =
this->_primary_interface (poa_current_impl->object_id (),
poa.in (),
ACE_TRY_ENV);
ACE_CHECK_RETURN (0);
CORBA::PolicyList_var client_exposed_policies =
- poa_current_impl->poa ()->client_exposed_policies (
- poa_current_impl->priority (),
- ACE_TRY_ENV
- );
+ poa_current_impl->poa ()->client_exposed_policies
+ (poa_current_impl->priority (), ACE_TRY_ENV);
ACE_CHECK_RETURN (0);
- return poa_current_impl->poa ()->key_to_stub (
- poa_current_impl->object_key (),
- interface,
- poa_current_impl->priority (),
- ACE_TRY_ENV
- );
+ return poa_current_impl->poa ()->key_to_stub (poa_current_impl->object_key (),
+ pinterface,
+ poa_current_impl->priority (),
+ ACE_TRY_ENV);
}
void