From 9aab8b2009f0a3ebbfae27ede190a4ecea88a67a Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Fri, 14 Jan 2000 22:55:24 +0000 Subject: [PATCH] SN: Fixed inlcudes for EMX, commented out lines like "cout << something;" (If you want them in the code, please also include iostream.h). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/os2/utilsexc.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/os2/utilsexc.cpp b/src/os2/utilsexc.cpp index f80036e7d4..92187d9b61 100644 --- a/src/os2/utilsexc.cpp +++ b/src/os2/utilsexc.cpp @@ -26,12 +26,18 @@ #include "wx/os2/private.h" #define PURE_32 +#ifndef __EMX__ #include #include #include +#endif #include +#ifdef __EMX__ +#include +#else #include +#endif #include #include @@ -42,6 +48,7 @@ #include #include + // this message is sent when the process we're waiting for terminates #define wxWM_PROC_TERMINATED (WM_USER + 10000) @@ -55,7 +62,7 @@ struct wxExecuteData public: ~wxExecuteData() { - cout << "Closing thread: " << endl; +// cout << "Closing thread: " << endl; DosExit(EXIT_PROCESS, 0); } @@ -73,7 +80,7 @@ static ULONG wxExecuteThread( ULONG ulRc; PID vPidChild; - cout << "Executing thread: " << endl; +// cout << "Executing thread: " << endl; ulRc = ::DosWaitChild( DCWA_PROCESSTREE ,DCWW_NOWAIT @@ -135,7 +142,7 @@ long wxExecute( { if (rCommand.IsEmpty()) { - cout << "empty command in wxExecute." << endl; +// cout << "empty command in wxExecute." << endl; return 0; } @@ -168,7 +175,7 @@ long wxExecute( wxLogSysError(_("Execution of command '%s' failed with error: %ul"), rCommand.c_str(), rc); return 0; } - cout << "Executing: " << rCommand.c_str() << endl; +// cout << "Executing: " << rCommand.c_str() << endl; // Alloc data wxExecuteData* pData = new wxExecuteData; -- 2.45.2