summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_root/root.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_root/root.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_root/root.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_root/root.cpp b/TAO/TAO_IDL/be/be_visitor_root/root.cpp
index 4193dd94fae..0c8b7af6ac0 100644
--- a/TAO/TAO_IDL/be/be_visitor_root/root.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_root/root.cpp
@@ -133,13 +133,11 @@ int be_visitor_root::visit_root (be_root *node)
break;
case TAO_CodeGen::TAO_ROOT_IH:
- (void) tao_cg->end_implementation_header (
- be_global->be_get_implementation_hdr_fname (0)
- );
+ (void) tao_cg->end_implementation_header (idl_global->be_get_implementation_hdr_fname (0));
break;
case TAO_CodeGen::TAO_ROOT_SH:
(void) tao_cg->end_server_header ();
- if (be_global->gen_tie_classes ())
+ if (idl_global->gen_tie_classes ())
(void) tao_cg->end_server_template_header ();
return 0;
@@ -150,7 +148,7 @@ int be_visitor_root::visit_root (be_root *node)
case TAO_CodeGen::TAO_ROOT_SI:
return 0; // nothing to be done
case TAO_CodeGen::TAO_ROOT_SS:
- if (be_global->gen_tie_classes ())
+ if (idl_global->gen_tie_classes ())
(void) tao_cg->end_server_template_skeletons ();
return 0; // nothing to be done
default: