summaryrefslogtreecommitdiff
path: root/ace/Parse_Node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Parse_Node.cpp')
-rw-r--r--ace/Parse_Node.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Parse_Node.cpp b/ace/Parse_Node.cpp
index 69dd85ef66a..b2911573a37 100644
--- a/ace/Parse_Node.cpp
+++ b/ace/Parse_Node.cpp
@@ -390,9 +390,9 @@ ACE_Location_Node::open_handle (void)
// Transform the pathname into the appropriate dynamic link library
// by searching the ACE_LD_SEARCH_PATH.
- int result = ACE::ldfind (this->pathname (),
- dl_pathname,
- (sizeof dl_pathname / sizeof (ACE_TCHAR)));
+ int result = ACE_Lib_Find::ldfind (this->pathname (),
+ dl_pathname,
+ (sizeof dl_pathname / sizeof (ACE_TCHAR)));
// Check for errors
if (result != 0)
@@ -435,7 +435,7 @@ ACE_Object_Node::dump (void) const
ACE_Object_Node::ACE_Object_Node (const ACE_TCHAR *path,
const ACE_TCHAR *obj_name)
- : object_name_ (obj_name ? ACE::ldname (obj_name) : 0)
+ : object_name_ (obj_name ? ACE_Lib_Find::ldname (obj_name) : 0)
{
ACE_TRACE ("ACE_Object_Node::ACE_Object_Node");
this->pathname (path ? ACE::strnew (path) : 0);
@@ -496,7 +496,7 @@ ACE_Function_Node::dump (void) const
ACE_Function_Node::ACE_Function_Node (const ACE_TCHAR *path,
const ACE_TCHAR *func_name)
- : function_name_ (func_name ? ACE::ldname (func_name) : 0)
+ : function_name_ (func_name ? ACE_Lib_Find::ldname (func_name) : 0)
{
ACE_TRACE ("ACE_Function_Node::ACE_Function_Node");
this->pathname (path);