1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0029447: The constructor of Message_PrinterOStream mixes up cout and cerr

Use of cerr or cout is corrected in Message_PrinterOStream constructor
This commit is contained in:
abv 2018-01-28 19:49:43 +03:00 committed by apn
parent ca4e36ae5b
commit 32712d67c1
2 changed files with 2 additions and 6 deletions

View File

@ -49,12 +49,12 @@ Message_PrinterOStream::Message_PrinterOStream (const Standard_CString theFileNa
myIsFile (Standard_False)
{
myTraceLevel = theTraceLevel;
if (strcasecmp(theFileName, "cout") == 0)
if (strcasecmp(theFileName, "cerr") == 0)
{
myStream = &std::cerr;
return;
}
else if (strcasecmp(theFileName, "cerr") == 0)
else if (strcasecmp(theFileName, "cout") == 0)
{
myStream = &std::cout;
return;

View File

@ -19,8 +19,6 @@
#include <CDF_DirectoryIterator.hxx>
#include <CDF_Session.hxx>
#include <CDF_Store.hxx>
#include <Message_Messenger.hxx>
#include <Message_PrinterOStream.hxx>
#include <PCDM_RetrievalDriver.hxx>
#include <PCDM_StorageDriver.hxx>
#include <Plugin.hxx>
@ -30,9 +28,7 @@
#include <Standard_ErrorHandler.hxx>
#include <Standard_NoSuchObject.hxx>
#include <Standard_NotImplemented.hxx>
#include <Standard_Type.hxx>
#include <TCollection_ExtendedString.hxx>
#include <TDF_Label.hxx>
#include <TDocStd_Application.hxx>
#include <TDocStd_Document.hxx>
#include <TDocStd_Owner.hxx>