summaryrefslogtreecommitdiff
path: root/ace/Trace.cpp
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-05 07:48:33 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-05 07:48:33 +0000
commit918b5e00b9014cd9f971ef67bbc995f7f02ae318 (patch)
tree2af623a86730adcc73cd4e6ee4aca681fc226017 /ace/Trace.cpp
parentebe7ee288e6a86e32757f4ff76625c415a52fcf3 (diff)
downloadATCD-918b5e00b9014cd9f971ef67bbc995f7f02ae318.tar.gz
CE UNICODE madness continue...
Diffstat (limited to 'ace/Trace.cpp')
-rw-r--r--ace/Trace.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ace/Trace.cpp b/ace/Trace.cpp
index e7cb01c9cf3..3564e42e622 100644
--- a/ace/Trace.cpp
+++ b/ace/Trace.cpp
@@ -79,9 +79,9 @@ ACE_Trace::set_nesting_indent (int indent)
// Perform the first part of the trace, which prints out the string N,
// the LINE, and the ACE_FILE as the function is entered.
-ACE_Trace::ACE_Trace (const char *n,
+ACE_Trace::ACE_Trace (const ASYS_TCHAR *n,
int line,
- const char *file)
+ const ASYS_TCHAR *file)
{
this->name_ = n;
@@ -92,9 +92,9 @@ ACE_Trace::ACE_Trace (const char *n,
&& lm->trace_active () == 0)
{
lm->trace_active (1);
- ACE_DEBUG ((LM_TRACE, "%*s(%t) calling %s in file `%s' on line %d\n",
+ ACE_DEBUG ((LM_TRACE, ASYS_TEXT ("%*s(%t) calling %s in file `%s' on line %d\n"),
ACE_Trace::nesting_indent_ * lm->inc (),
- "", this->name_, file, line));
+ ASYS_TEXT (""), this->name_, file, line));
lm->trace_active (0);
}
}
@@ -112,9 +112,9 @@ ACE_Trace::~ACE_Trace (void)
&& lm->trace_active () == 0)
{
lm->trace_active (1);
- ACE_DEBUG ((LM_TRACE, "%*s(%t) leaving %s\n",
+ ACE_DEBUG ((LM_TRACE, ASYS_TEXT ("%*s(%t) leaving %s\n"),
ACE_Trace::nesting_indent_ * lm->dec (),
- "", this->name_));
+ ASYS_TEXT (""), this->name_));
lm->trace_active (0);
}
}