diff options
author | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-09-05 11:58:32 +0000 |
---|---|---|
committer | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-09-05 11:58:32 +0000 |
commit | c2808949dc843fa2c555f220f930cc869bb45858 (patch) | |
tree | 9a2b7b0128a99babeeddeb152081334439406174 | |
parent | e028585caf9983000a1d2872f687631fde8741a7 (diff) | |
download | ATCD-c2808949dc843fa2c555f220f930cc869bb45858.tar.gz |
ChangeLogTag: Wed Sep 5 06:55:44 2001 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 7 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 7 | ||||
-rw-r--r-- | tests/Log_Msg_Test.cpp | 2 |
4 files changed, 22 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 54c1c05bd16..eba7d7c530b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Wed Sep 5 06:55:44 2001 Chad Elliott <elliott_c@ociweb.com> + + * tests/Log_Msg_Test.cpp: + + Add ACE_TEXT() around the default program name for the Windows + WChar Unicode build. + Tue Sep 4 18:48:00 2001 Balachandran Natarajan <bala@cs.wustl.edu> * ace/Select_Reactor_Base.cpp: Changed the value returned from diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 54c1c05bd16..eba7d7c530b 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,10 @@ +Wed Sep 5 06:55:44 2001 Chad Elliott <elliott_c@ociweb.com> + + * tests/Log_Msg_Test.cpp: + + Add ACE_TEXT() around the default program name for the Windows + WChar Unicode build. + Tue Sep 4 18:48:00 2001 Balachandran Natarajan <bala@cs.wustl.edu> * ace/Select_Reactor_Base.cpp: Changed the value returned from diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 54c1c05bd16..eba7d7c530b 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,10 @@ +Wed Sep 5 06:55:44 2001 Chad Elliott <elliott_c@ociweb.com> + + * tests/Log_Msg_Test.cpp: + + Add ACE_TEXT() around the default program name for the Windows + WChar Unicode build. + Tue Sep 4 18:48:00 2001 Balachandran Natarajan <bala@cs.wustl.edu> * ace/Select_Reactor_Base.cpp: Changed the value returned from diff --git a/tests/Log_Msg_Test.cpp b/tests/Log_Msg_Test.cpp index c5d9d2bf3bd..f666b68d145 100644 --- a/tests/Log_Msg_Test.cpp +++ b/tests/Log_Msg_Test.cpp @@ -537,7 +537,7 @@ main (int argc, ACE_TCHAR *argv[]) ACE_TEXT ("**** running features test\n"))); // Test various features of the <ACE_Log_Msg>. - test_log_msg_features ((argc > 0 ? argv[0] : "program")); + test_log_msg_features ((argc > 0 ? argv[0] : ACE_TEXT ("program"))); // Test the format specifiers |