diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-30 04:31:22 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-30 04:31:22 +0000 |
commit | 6d64069608cb5e29a191ed8d2eb4d7e163aa0290 (patch) | |
tree | 9f02216ea2a0aaf7c1404e4f48dcc9e18cf151a6 /TAO/tests/POA/FindPOA | |
parent | e8a745ea70a1df43a209f25c7ecc36a397249c8f (diff) | |
download | ATCD-6d64069608cb5e29a191ed8d2eb4d7e163aa0290.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tests/POA/FindPOA')
-rw-r--r-- | TAO/tests/POA/FindPOA/FindPOA.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/POA/FindPOA/FindPOA.cpp b/TAO/tests/POA/FindPOA/FindPOA.cpp index ef1d4dae9f6..d8ea74a2e36 100644 --- a/TAO/tests/POA/FindPOA/FindPOA.cpp +++ b/TAO/tests/POA/FindPOA/FindPOA.cpp @@ -75,7 +75,7 @@ main (int argc, char **argv) ACE_CString name = "firstPOA"; PortableServer::POA_var first_poa = root_poa->find_POA (name.c_str (), - CORBA::B_TRUE, + 1, env); if (env.exception () != 0) { @@ -90,7 +90,7 @@ main (int argc, char **argv) name += "secondPOA"; PortableServer::POA_var second_poa = root_poa->find_POA (name.c_str (), - CORBA::B_TRUE, + 1, env); if (env.exception () != 0) { @@ -115,7 +115,7 @@ main (int argc, char **argv) PortableServer::POA_var fifth_poa = root_poa->find_POA (name.c_str (), - CORBA::B_TRUE, + 1, env); if (env.exception () != 0) { @@ -166,8 +166,8 @@ main (int argc, char **argv) // This should destroy all its children - root_poa->destroy (CORBA::B_TRUE, - CORBA::B_TRUE, + root_poa->destroy (1, + 1, env); if (env.exception () != 0) { |