X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=libctsupport%2Fsyserror.cpp;h=d50471ef4f1e504aac49fa806ca76d348fab8373;hb=72615e14dd531463cea3278ff6dc19ffbbe0b06c;hp=7707b3071b2612b02c9c7c826a407f9e36e1218a;hpb=d73b389e1a794abd8946acfbb209e4827e31f8ca;p=ctsim.git diff --git a/libctsupport/syserror.cpp b/libctsupport/syserror.cpp index 7707b30..d50471e 100644 --- a/libctsupport/syserror.cpp +++ b/libctsupport/syserror.cpp @@ -1,8 +1,8 @@ /***************************************************************************** ** This is part of the CTSim program -** Copyright (C) 1983-2000 Kevin Rosenberg +** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: syserror.cpp,v 1.17 2001/01/19 22:29:15 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) - *theApp->getLog() << strOutput.c_str(); + 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;