- eliminate unused BX_ASYNC_EVT_SHUTDOWN_GUI event.

This commit is contained in:
Bryce Denney 2002-08-28 03:14:53 +00:00
parent c6277af486
commit 67f9213460
2 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: control.cc,v 1.57 2002-08-27 18:11:13 bdenney Exp $
// $Id: control.cc,v 1.58 2002-08-28 03:14:53 bdenney Exp $
/////////////////////////////////////////////////////////////////////////
//
// This is code for a text-mode configuration interfac. Note that this file
@ -624,9 +624,6 @@ config_interface_notify_callback (void *unused, BxEvent *event)
case BX_SYNC_EVT_ASK_PARAM:
fprintf (stderr, "BX_SYNC_EVT_ASK_PARAM\n");
return event;
case BX_ASYNC_EVT_SHUTDOWN_GUI:
fprintf (stderr, "BX_ASYNC_EVT_SHUTDOWN_GUI\n");
return event;
case BX_SYNC_EVT_LOG_ASK:
{
int level = event->u.logmsg.level;

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: siminterface.h,v 1.48 2002-08-27 18:11:13 bdenney Exp $
// $Id: siminterface.h,v 1.49 2002-08-28 03:14:53 bdenney Exp $
/////////////////////////////////////////////////////////////////////////
//
// Before I can describe what this file is for, I have to make the
@ -313,7 +313,6 @@ typedef enum {
BX_ASYNC_EVT_SET_PARAM, // CUI -> simulator
BX_ASYNC_EVT_LOG_MSG, // simulator -> CUI
BX_ASYNC_EVT_VALUE_CHANGED, // simulator -> CUI
BX_ASYNC_EVT_SHUTDOWN_GUI, // simulator -> CUI
BX_ASYNC_EVT_TOOLBAR // CUI -> simulator
} BxEventType;