summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-12-24 13:19:10 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-12-24 13:19:10 +0000
commitd32265c1cc54e8634e9ec607f5dffe943a3e991c (patch)
tree10b7e76ae42fc2f26abf177cbb07f053af11e766
parent816fbbbf178e5fcbd2472ae393dbb69cd546d05c (diff)
downloadATCD-d32265c1cc54e8634e9ec607f5dffe943a3e991c.tar.gz
ChangeLogTag: Thu Dec 24 13:15:42 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/TAO_IDL/be/be_template_module_ref.cpp2
-rw-r--r--TAO/TAO_IDL/be_include/be_template_module_ref.h2
3 files changed, 9 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 242686c5a3d..c9540af8c04 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Thu Dec 24 13:15:42 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * TAO_IDL/be_include/be_template_module_ref.h:
+ * TAO_IDL/be/be_template_module_ref.cpp:
+
+ Fixed cut-and-paste error in virtual method name.
+
Thu Dec 24 10:20:00 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Trader/Trader.h:
diff --git a/TAO/TAO_IDL/be/be_template_module_ref.cpp b/TAO/TAO_IDL/be/be_template_module_ref.cpp
index 10b91be52f4..fdb3308b22b 100644
--- a/TAO/TAO_IDL/be/be_template_module_ref.cpp
+++ b/TAO/TAO_IDL/be/be_template_module_ref.cpp
@@ -37,7 +37,7 @@ be_template_module_ref::destroy (void)
}
int
-be_template_module_ref::ast_accept (be_visitor *)
+be_template_module_ref::accept (be_visitor *)
{
return 0;//visitor->visit_template_module_ref (this);
}
diff --git a/TAO/TAO_IDL/be_include/be_template_module_ref.h b/TAO/TAO_IDL/be_include/be_template_module_ref.h
index eb33ffb832e..ab8bc4a4478 100644
--- a/TAO/TAO_IDL/be_include/be_template_module_ref.h
+++ b/TAO/TAO_IDL/be_include/be_template_module_ref.h
@@ -26,7 +26,7 @@ public:
virtual void destroy (void);
// Visiting.
- virtual int ast_accept (be_visitor *visitor);
+ virtual int accept (be_visitor *visitor);
};
#endif // BE_TEMPLATE_MODULE_REF_H