summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests
diff options
context:
space:
mode:
authorhannan <hannan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-17 20:18:38 +0000
committerhannan <hannan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-17 20:18:38 +0000
commitc527111a3b53e6eddb98c4a4dbcb8cfe18b1765f (patch)
tree5873b54355edfaa758035d1abf55723f6b00193b /TAO/orbsvcs/tests
parent44ab6f77ad7a33e7a75dbc34a7f8d7f5ee8bee28 (diff)
downloadATCD-c527111a3b53e6eddb98c4a4dbcb8cfe18b1765f.tar.gz
ChangeLogTag: Fri Mar 17 14:17:00 2000 Shawn Hannan <hannan@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/tests')
-rw-r--r--TAO/orbsvcs/tests/Property/client.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/tests/Property/client.cpp b/TAO/orbsvcs/tests/Property/client.cpp
index a9271ee18e0..4fb0b5b36ed 100644
--- a/TAO/orbsvcs/tests/Property/client.cpp
+++ b/TAO/orbsvcs/tests/Property/client.cpp
@@ -210,7 +210,7 @@ Client::test_get_all_property_names (CORBA::Environment &ACE_TRY_ENV)
// The extra ptr's and out's required to avoind SunnCC's warning
// when foo.out () is passed to a funtion.
CosPropertyService::PropertyNames_var names_var;
- CosPropertyService::PropertyNames_ptr names_ptr = 0;
+ CosPropertyService::PropertyNames *names_ptr = 0;
CosPropertyService::PropertyNames_out names_out (names_ptr);
CosPropertyService::PropertyNamesIterator_var iterator_var;
@@ -282,7 +282,7 @@ Client::test_get_properties (CORBA::Environment &ACE_TRY_ENV)
// value is false and type is tc_void then that name is not there in
// the PropertySet.
CosPropertyService::PropertyNames_var names;
- CosPropertyService::PropertyNames_ptr names_ptr;
+ CosPropertyService::PropertyNames *names_ptr;
ACE_NEW_RETURN (names_ptr,
CosPropertyService::PropertyNames,
@@ -297,7 +297,7 @@ Client::test_get_properties (CORBA::Environment &ACE_TRY_ENV)
//names [2] = CORBA::string_dup ("no_property");
- CosPropertyService::Properties_ptr properties_ptr = 0;
+ CosPropertyService::Properties *properties_ptr = 0;
CosPropertyService::Properties_out properties_out (properties_ptr);
// Get the properties.
@@ -497,7 +497,7 @@ Client::test_get_all_properties (CORBA::Environment &ACE_TRY_ENV)
CORBA::ULong how_many = 1;
// Helper variables to avoid SunCC warnings.
- CosPropertyService::Properties_ptr properties_ptr = 0;
+ CosPropertyService::Properties *properties_ptr = 0;
CosPropertyService::Properties_out properties_out (properties_ptr);
CosPropertyService::PropertiesIterator_ptr iterator_ptr = 0;
CosPropertyService::PropertiesIterator_out iterator_out (iterator_ptr);