summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_valuetype_fwd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_valuetype_fwd.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_valuetype_fwd.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/be/be_valuetype_fwd.cpp b/TAO/TAO_IDL/be/be_valuetype_fwd.cpp
index a6edfb1f3f5..44638e2ad6d 100644
--- a/TAO/TAO_IDL/be/be_valuetype_fwd.cpp
+++ b/TAO/TAO_IDL/be/be_valuetype_fwd.cpp
@@ -79,7 +79,7 @@ be_valuetype_fwd::gen_var_defn (char *)
// for over here.
ch->indent (); // start with whatever was our current indent level
- *ch << "class " << idl_global->stub_export_macro ()
+ *ch << "class " << idl_global->export_macro ()
<< " " << namebuf << nl;
*ch << "{" << nl;
*ch << "public:\n";
@@ -150,7 +150,7 @@ be_valuetype_fwd::gen_var_impl (char *, char *)
char lname [NAMEBUFSIZE]; // local _var names
ACE_OS::memset (fname, '\0', NAMEBUFSIZE);
- ACE_OS::sprintf (fname, "%s_var", this->fullname ());
+ ACE_OS::sprintf (fname, "%s_var", this->full_name ());
ACE_OS::memset (lname, '\0', NAMEBUFSIZE);
ACE_OS::sprintf (lname, "%s_var", local_name ()->get_string ());
@@ -342,7 +342,7 @@ be_valuetype_fwd::gen_out_defn (char *)
// generate the out definition (always in the client header)
ch->indent (); // start with whatever was our current indent level
- *ch << "class " << idl_global->stub_export_macro ()
+ *ch << "class " << idl_global->export_macro ()
<< " " << namebuf << nl;
*ch << "{" << nl;
*ch << "public:\n";
@@ -392,7 +392,7 @@ be_valuetype_fwd::gen_out_impl (char *, char *)
char lname [NAMEBUFSIZE]; // local _out names
ACE_OS::memset (fname, '\0', NAMEBUFSIZE);
- ACE_OS::sprintf (fname, "%s_out", this->fullname ());
+ ACE_OS::sprintf (fname, "%s_out", this->full_name ());
ACE_OS::memset (lname, '\0', NAMEBUFSIZE);
ACE_OS::sprintf (lname, "%s_out", local_name ()->get_string ());