r1948: *** empty log message ***
[ctsim.git] / libctsupport / syserror.cpp
index b874f07d8ca334654115fccaf6acb76fbb910228..0823ea2bbbeb609be1993fdd1051dfe7b9858231 100644 (file)
@@ -2,7 +2,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: syserror.cpp,v 1.22 2001/02/27 03:59:30 kevin Exp $
+**  $Id: syserror.cpp,v 1.23 2002/05/05 10:54:34 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
@@ -38,7 +38,6 @@
 *   int severity               Severity of error
 *   char *msg                  Error message
 *   args                       Argument list, direct transfer to printf stack
-*                              Can take 24 byte transfer
 */
 
 static int s_reportErrorLevel = ERR_TRACE;     // Set error reporting level 
@@ -60,7 +59,7 @@ void sys_error (int severity, const char *msg, ...)
       wxString msg (strOutput.c_str());
       msg += "\n";
       eventLog.SetString( msg );
-      wxPostEvent( theApp->getMainFrame(), eventLog ); // send log event, thread safe
+      //      wxPostEvent( theApp->getMainFrame(), eventLog ); // send log event, thread safe
     } else {
       wxMutexGuiEnter();
       wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL));