r427: Changes for MDI support
[ctsim.git] / libctsupport / syserror.cpp
index 8c28c3b6d5859a964f678fc543a55059ef4804ef..dfce52808afbad9e34b0d0eb9455f26e8d53102d 100644 (file)
@@ -2,7 +2,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: syserror.cpp,v 1.16 2001/01/18 21:30:22 kevin Exp $
+**  $Id: syserror.cpp,v 1.18 2001/01/20 08:10:33 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
 #include <ctype.h>
 #include <string>
 #include "ct.h"
+
+#ifdef HAVE_WXWINDOWS
 #include "../src/ctsim.h"
+#endif
 
 /* NAME
 *   sys_error                  System error handler
@@ -52,7 +55,7 @@ void sys_error (int severity, const char *msg, ...)
  
 #ifdef HAVE_WXWINDOWS
   if (g_bRunningWXWindows)
-    *theApp->getLog() << strOutput.c_str();
+    wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL));
   else
 #endif
     std::cout << strOutput;