From 5b39dc76f1bc82f941d5c800ab9f34407a06b53a Mon Sep 17 00:00:00 2001 From: Igor Pavlov <87184205+ip7z@users.noreply.github.com> Date: Wed, 21 Jun 2023 00:00:00 +0000 Subject: 23.01 --- CPP/Common/StdOutStream.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'CPP/Common/StdOutStream.cpp') 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 @@ #include "StringConvert.h" #include "UTFConvert.h" -#define kFileOpenMode "wt" - CStdOutStream g_StdOut(stdout); CStdOutStream g_StdErr(stderr); +/* +// #define kFileOpenMode "wt" + bool CStdOutStream::Open(const char *fileName) throw() { Close(); @@ -34,6 +35,7 @@ bool CStdOutStream::Close() throw() _streamIsOpen = false; return true; } +*/ bool CStdOutStream::Flush() throw() { @@ -73,7 +75,7 @@ void CStdOutStream::Convert_UString_to_AString(const UString &src, AString &dest static const wchar_t kReplaceChar = '_'; -void CStdOutStream::Normalize_UString__LF_Allowed(UString &s) +void CStdOutStream::Normalize_UString_LF_Allowed(UString &s) { unsigned len = s.Len(); wchar_t *d = s.GetBuf(); -- cgit v1.2.3-55-g6feb