summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 00:18:13 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 00:18:13 +0000
commitfccf6459503f72312f1230a0dc84a5870fb29f0d (patch)
tree801a71fc4fa07f74000e60f6bff3a06b32a78304
parent40251337dcb508f0951c46a1652499479a0f6521 (diff)
downloadATCD-fccf6459503f72312f1230a0dc84a5870fb29f0d.tar.gz
POA_ was missing from class name
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp b/TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp
index 1df387334ee..d3c4200fb21 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/interceptors_ss.cpp
@@ -281,7 +281,7 @@ be_visitor_operation_interceptors_ss::visit_operation (be_operation *node)
// be_decl *parents_parent = be_interface::narrow_from_scope (parent_interface->scope ())->decl ();
// Generate the scope::operation name.
// *os << parents_parent->full_name () << "::";
- *os << parent->full_name () << "::";
+ *os << "POA_"<< parent->full_name () << "::";
}
*os << "TAO_ServerRequest_Info_"<<node->flat_name ()<< "::"