summaryrefslogtreecommitdiff
path: root/tests/Naming_Test.cpp
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-24 20:51:11 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-24 20:51:11 +0000
commitdbeac73f76c854ecf1b73740cbd500ae35b47039 (patch)
tree1f4fb52dc5e816fdcb99eae71f2629220fbe1140 /tests/Naming_Test.cpp
parenta1e8f68499017845b93c6becd8b11b63629bba04 (diff)
downloadATCD-dbeac73f76c854ecf1b73740cbd500ae35b47039.tar.gz
Replaced __TEXT with ACE_TEXT
Diffstat (limited to 'tests/Naming_Test.cpp')
-rw-r--r--tests/Naming_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Naming_Test.cpp b/tests/Naming_Test.cpp
index 147200af1e8..b1be2e29b13 100644
--- a/tests/Naming_Test.cpp
+++ b/tests/Naming_Test.cpp
@@ -194,14 +194,14 @@ main (int argc, char *argv[])
#endif /* ACE_WIN32 && UNICODE */
if (unicode && name_options->use_registry () == 1)
{
- name_options->namespace_dir (__TEXT ("Software\\ACE\\Name Service"));
- name_options->database (__TEXT ("Version 1"));
+ name_options->namespace_dir (ACE_TEXT ("Software\\ACE\\Name Service"));
+ name_options->database (ACE_TEXT ("Version 1"));
}
else
{
ACE_OS::strcpy (temp_file, ACE::basename (name_options->process_name (),
ACE_DIRECTORY_SEPARATOR_CHAR));
- ACE_OS::strcat (temp_file, __TEXT ("XXXXXX"));
+ ACE_OS::strcat (temp_file, ACE_TEXT ("XXXXXX"));
// Set the database name using mktemp to generate a unique file name
name_options->database (ACE_OS::mktemp (temp_file));
@@ -244,7 +244,7 @@ main (int argc, char *argv[])
test_unbind (*ns_context);
print_time (timer, "Unbinds");
- ACE_OS::sprintf (temp_file, __TEXT ("%s%s%s"),
+ ACE_OS::sprintf (temp_file, ACE_TEXT ("%s%s%s"),
name_options->namespace_dir (),
ACE_DIRECTORY_SEPARATOR_STR,
name_options->database ());