X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=libctsupport%2Fsyserror.cpp;h=d50471ef4f1e504aac49fa806ca76d348fab8373;hb=d3fa225aa232e132cc198672c4fc148f96a1ab8c;hp=a4f8edae99413543deddff0e2192d0cc2c1f101c;hpb=9f29c8b32c972db1178d6f8551d5cd57ceb67083;p=ctsim.git diff --git a/libctsupport/syserror.cpp b/libctsupport/syserror.cpp index a4f8eda..d50471e 100644 --- a/libctsupport/syserror.cpp +++ b/libctsupport/syserror.cpp @@ -2,7 +2,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: syserror.cpp,v 1.19 2001/01/28 19:10:18 kevin Exp $ +** $Id: syserror.cpp,v 1.20 2001/01/30 02:20:50 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 @@ -54,8 +54,12 @@ void sys_error (int severity, const char *msg, ...) sys_verror (strOutput, severity, msg, arg); #ifdef HAVE_WXWINDOWS - if (g_bRunningWXWindows) - wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL)); + if (g_bRunningWXWindows) { + if (theApp) + *theApp->getLog() << strOutput.c_str() << "\n"; + else + wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL)); + } else #endif std::cout << strOutput;