* dlg.h: Remove DLG_PRE_EVENT, it's unused now.

This commit is contained in:
Pavel Roskin 2003-09-07 06:03:51 +00:00
parent 485bbcef9b
commit 9a7b4212c6
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2003-09-07 Pavel Roskin <proski@gnu.org> 2003-09-07 Pavel Roskin <proski@gnu.org>
* dlg.h: Remove DLG_PRE_EVENT, it's unused now.
* main.c (make_panels_dirty): Remove, it's unneded now. * main.c (make_panels_dirty): Remove, it's unneded now.
(midnight_callback): Don't call make_panels_dirty(). Mark (midnight_callback): Don't call make_panels_dirty(). Mark
current panel dirty if the search mode is unset. No need to set current panel dirty if the search mode is unset. No need to set

View File

@ -799,7 +799,6 @@ frontend_run_dlg (Dlg_head *h)
} }
update_cursor (h); update_cursor (h);
(*h->callback) (h, 0, DLG_PRE_EVENT);
/* Clear interrupt flag */ /* Clear interrupt flag */
got_interrupt (); got_interrupt ();

View File

@ -57,7 +57,6 @@ enum {
DLG_IDLE, /* The idle state is active */ DLG_IDLE, /* The idle state is active */
DLG_UNHANDLED_KEY, /* Key that no widget handled */ DLG_UNHANDLED_KEY, /* Key that no widget handled */
DLG_HOTKEY_HANDLED, /* A widget has got the hotkey */ DLG_HOTKEY_HANDLED, /* A widget has got the hotkey */
DLG_PRE_EVENT, /* About to get new event */
DLG_VALIDATE /* Dialog is to be closed */ DLG_VALIDATE /* Dialog is to be closed */
} /* Dialog_Messages */ ; } /* Dialog_Messages */ ;