X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsupport%2Fsyserror.cpp;fp=libctsupport%2Fsyserror.cpp;h=0823ea2bbbeb609be1993fdd1051dfe7b9858231;hp=b874f07d8ca334654115fccaf6acb76fbb910228;hb=512ebbafa4666521b5a8acef939e89dcec6e2643;hpb=c06595af2aec45b33ad8b731ea5775ac72b42d1d diff --git a/libctsupport/syserror.cpp b/libctsupport/syserror.cpp index b874f07..0823ea2 100644 --- a/libctsupport/syserror.cpp +++ b/libctsupport/syserror.cpp @@ -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));