diff options
Diffstat (limited to 'CPP/Common/StdOutStream.cpp')
-rw-r--r-- | CPP/Common/StdOutStream.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/CPP/Common/StdOutStream.cpp b/CPP/Common/StdOutStream.cpp index 40799e2..cfa5fde 100644 --- a/CPP/Common/StdOutStream.cpp +++ b/CPP/Common/StdOutStream.cpp | |||
@@ -11,11 +11,12 @@ | |||
11 | #include "StringConvert.h" | 11 | #include "StringConvert.h" |
12 | #include "UTFConvert.h" | 12 | #include "UTFConvert.h" |
13 | 13 | ||
14 | #define kFileOpenMode "wt" | ||
15 | |||
16 | CStdOutStream g_StdOut(stdout); | 14 | CStdOutStream g_StdOut(stdout); |
17 | CStdOutStream g_StdErr(stderr); | 15 | CStdOutStream g_StdErr(stderr); |
18 | 16 | ||
17 | /* | ||
18 | // #define kFileOpenMode "wt" | ||
19 | |||
19 | bool CStdOutStream::Open(const char *fileName) throw() | 20 | bool CStdOutStream::Open(const char *fileName) throw() |
20 | { | 21 | { |
21 | Close(); | 22 | Close(); |
@@ -34,6 +35,7 @@ bool CStdOutStream::Close() throw() | |||
34 | _streamIsOpen = false; | 35 | _streamIsOpen = false; |
35 | return true; | 36 | return true; |
36 | } | 37 | } |
38 | */ | ||
37 | 39 | ||
38 | bool CStdOutStream::Flush() throw() | 40 | bool CStdOutStream::Flush() throw() |
39 | { | 41 | { |
@@ -73,7 +75,7 @@ void CStdOutStream::Convert_UString_to_AString(const UString &src, AString &dest | |||
73 | 75 | ||
74 | static const wchar_t kReplaceChar = '_'; | 76 | static const wchar_t kReplaceChar = '_'; |
75 | 77 | ||
76 | void CStdOutStream::Normalize_UString__LF_Allowed(UString &s) | 78 | void CStdOutStream::Normalize_UString_LF_Allowed(UString &s) |
77 | { | 79 | { |
78 | unsigned len = s.Len(); | 80 | unsigned len = s.Len(); |
79 | wchar_t *d = s.GetBuf(); | 81 | wchar_t *d = s.GetBuf(); |