X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=libctsupport%2Fsyserror.cpp;h=dfce52808afbad9e34b0d0eb9455f26e8d53102d;hb=4acfc6927c3e0ad652ed27ade40987703816aab3;hp=1b9aff402c8513575e9492bb8f877b2eb48484a7;hpb=7f8f356151b0c8db0dbbf1c1896cc22630d6c774;p=ctsim.git diff --git a/libctsupport/syserror.cpp b/libctsupport/syserror.cpp index 1b9aff4..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.14 2001/01/12 16:41:56 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,10 +43,6 @@ static int s_reportErrorLevel = ERR_WARNING; // Set error reporting level -#ifdef HAVE_WXWINDOWS -#include "../src/ctsim.h" -bool g_bRunningWXWindows = false; -#endif void sys_error (int severity, const char *msg, ...) { @@ -56,7 +55,7 @@ void sys_error (int severity, const char *msg, ...) #ifdef HAVE_WXWINDOWS if (g_bRunningWXWindows) - *theApp->getLog() << strOutput.c_str(); + wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL)); else #endif std::cout << strOutput;