summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_sequence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_sequence.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_sequence.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/be/be_sequence.cpp b/TAO/TAO_IDL/be/be_sequence.cpp
index fb8131c0c32..57e3185c11b 100644
--- a/TAO/TAO_IDL/be/be_sequence.cpp
+++ b/TAO/TAO_IDL/be/be_sequence.cpp
@@ -467,7 +467,7 @@ be_sequence::instance_name ()
if (this->unbounded ())
{
ACE_OS::sprintf (namebuf,
- "TAO::unbounded_basic_string_sequence<char>");
+ "TAO::unbounded_string_sequence");
}
else
{
@@ -481,7 +481,7 @@ be_sequence::instance_name ()
if (this->unbounded ())
{
ACE_OS::sprintf (namebuf,
- "TAO::unbounded_basic_string_sequence<CORBA::WChar>");
+ "TAO::unbounded_wstring_sequence");
}
else
{
@@ -587,11 +587,11 @@ be_sequence::gen_base_class_name (TAO_OutStream *os,
case be_sequence::MNG_STRING:
if (this->unbounded ())
{
- *os << "TAO::unbounded_basic_string_sequence<char>";
+ *os << "TAO::unbounded_string_sequence";
}
else
{
- *os << "TAO::bounded_basic_string_sequence<char, "
+ *os << "TAO::bounded_string_sequence<"
<< this->max_size ()->ev ()->u.ulval << ">";
}
@@ -599,11 +599,11 @@ be_sequence::gen_base_class_name (TAO_OutStream *os,
case be_sequence::MNG_WSTRING:
if (this->unbounded ())
{
- *os << "TAO::unbounded_basic_string_sequence<CORBA::WChar>";
+ *os << "TAO::unbounded_wstring_sequence";
}
else
{
- *os << "TAO::bounded_basic_string_sequence<CORBA::WChar, "
+ *os << "TAO::bounded_wstring_sequence<"
<< this->max_size ()->ev ()->u.ulval << ">";
}