r460: no message
[ctsim.git] / libctsupport / syserror.cpp
index ee6980e0291779601b774ebda285b0a0807968e2..a4f8edae99413543deddff0e2192d0cc2c1f101c 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.13 2001/01/10 21:21:53 kevin Exp $
+**  $Id: syserror.cpp,v 1.19 2001/01/28 19:10:18 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
@@ -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);