r470: Fixed shutdown error, take 3
[ctsim.git] / libctsupport / syserror.cpp
index 623e6629d117a76bf8756b1ce855f662be8fcd20..d50471ef4f1e504aac49fa806ca76d348fab8373 100644 (file)
@@ -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.15 2001/01/13 03:51:35 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
@@ -26,6 +26,9 @@
 #include <string>
 #include "ct.h"
 
+#ifdef HAVE_WXWINDOWS
+#include "../src/ctsim.h"
+#endif
 
 /* NAME
 *   sys_error                  System error handler
@@ -51,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;