r384: Added first vesion of EZPlotDialog
[ctsim.git] / libctsupport / syserror.cpp
index ee6980e0291779601b774ebda285b0a0807968e2..1b9aff402c8513575e9492bb8f877b2eb48484a7 100644 (file)
@@ -2,7 +2,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: syserror.cpp,v 1.13 2001/01/10 21:21:53 kevin Exp $
+**  $Id: syserror.cpp,v 1.14 2001/01/12 16:41:56 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
 **
 **  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
 
 static int s_reportErrorLevel = ERR_WARNING;   // Set error reporting level 
 
 
 static int s_reportErrorLevel = ERR_WARNING;   // Set error reporting level 
 
+#ifdef HAVE_WXWINDOWS
+#include "../src/ctsim.h"
 bool g_bRunningWXWindows = false;
 bool g_bRunningWXWindows = false;
+#endif
 
 void sys_error (int severity, const char *msg, ...)
 {
 
 void sys_error (int severity, const char *msg, ...)
 {
@@ -50,10 +53,12 @@ void sys_error (int severity, const char *msg, ...)
   
   std::string strOutput;
   sys_verror (strOutput, severity, msg, arg);
   
   std::string strOutput;
   sys_verror (strOutput, severity, msg, arg);
-  
-//  if (g_bRunningWXWindows)
-//    theApp->getLog() << strOutput.c_str();
-//  else
+#ifdef HAVE_WXWINDOWS
+  if (g_bRunningWXWindows)
+    *theApp->getLog() << strOutput.c_str();
+  else
+#endif
     std::cout << strOutput;
 
   va_end(arg);
     std::cout << strOutput;
 
   va_end(arg);