diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-02-21 01:36:28 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-02-21 01:36:28 +0000 |
commit | 5414426103311b8d7e52df5775d3e040ca47305d (patch) | |
tree | c6ecda2bd38af425b5b60832ddf312591ed129e1 /TAO/utils | |
parent | 670b27d5fc6ee6d801cf597fd386571b7419ef1d (diff) | |
download | ATCD-5414426103311b8d7e52df5775d3e040ca47305d.tar.gz |
ChangeLogTag:Thu Feb 20 17:31:58 2003 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/utils')
-rw-r--r-- | TAO/utils/catior/catior.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/utils/catior/catior.cpp b/TAO/utils/catior/catior.cpp index ddfc5300b9b..b00019c826f 100644 --- a/TAO/utils/catior/catior.cpp +++ b/TAO/utils/catior/catior.cpp @@ -80,7 +80,7 @@ catiiop (char* string if (cp == 0) { - ACE_THROW_RETURN (CORBA_DATA_CONVERSION (), 0); + ACE_THROW_RETURN (CORBA::DATA_CONVERSION (), 0); } hostname = CORBA::string_alloc (1 + cp - string); @@ -98,7 +98,7 @@ catiiop (char* string if (cp == 0) { CORBA::string_free (hostname); - ACE_THROW_RETURN (CORBA_DATA_CONVERSION (), 0); + ACE_THROW_RETURN (CORBA::DATA_CONVERSION (), 0); } port_number = (short) ACE_OS::atoi ((char *) string); @@ -240,7 +240,7 @@ catior (char* str // No profiles means a NIL objref. if (profiles == 0) - return CORBA_TypeCode::TRAVERSE_CONTINUE; + return CORBA::TypeCode::TRAVERSE_CONTINUE; else while (profiles-- != 0) { |