X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsupport%2Fsyserror.cpp;h=dfce52808afbad9e34b0d0eb9455f26e8d53102d;hp=f87b82eee3ef08d93d1a31c3699d1d55810c66ad;hb=01ed72399d433ce45a0195f8acaea349a421461e;hpb=c00c639073653fac7463a88f2b000f263236550d diff --git a/libctsupport/syserror.cpp b/libctsupport/syserror.cpp index f87b82e..dfce528 100644 --- a/libctsupport/syserror.cpp +++ b/libctsupport/syserror.cpp @@ -2,7 +2,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: syserror.cpp,v 1.12 2001/01/02 16:02:13 kevin Exp $ +** $Id: syserror.cpp,v 1.18 2001/01/20 08:10:33 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -26,6 +26,9 @@ #include #include "ct.h" +#ifdef HAVE_WXWINDOWS +#include "../src/ctsim.h" +#endif /* NAME * sys_error System error handler @@ -40,7 +43,6 @@ static int s_reportErrorLevel = ERR_WARNING; // Set error reporting level -bool g_bRunningWXWindows = false; void sys_error (int severity, const char *msg, ...) { @@ -50,10 +52,12 @@ void sys_error (int severity, const char *msg, ...) std::string strOutput; sys_verror (strOutput, severity, msg, arg); - -// if (g_bRunningWXWindows) -// theApp->getLog() << strOutput.c_str(); -// else + +#ifdef HAVE_WXWINDOWS + if (g_bRunningWXWindows) + wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL)); + else +#endif std::cout << strOutput; va_end(arg); @@ -115,8 +119,10 @@ void sys_verror (std::string& strOutput, int severity, const char *msg, va_list os << errStr << "\n"; strOutput = os.str(); - if (severity == ERR_FATAL) - throw std::runtime_error (errStr); + if (severity == ERR_FATAL) { + std::cerr << strOutput; + throw std::runtime_error (strOutput); + } #if INTERACTIVE_ERROR_DISPLAY std::cout << "A - Abort C - Continue W - Turn off warnings? ";