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:
parent
ca4e36ae5b
commit
32712d67c1
@ -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;
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user