From ffadd254d712668fa15a6cc34ffedc9bb5452584 Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 4 Jan 2025 23:51:34 -0500 Subject: [PATCH] follow-up: missed comment and an outdated interface --- outdated/sys/amiga/winami.c | 6 ++---- win/Qt/qt_bind.cpp | 1 - win/shim/winshim.c | 1 - 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/outdated/sys/amiga/winami.c b/outdated/sys/amiga/winami.c index fc860d603..4b7866346 100644 --- a/outdated/sys/amiga/winami.c +++ b/outdated/sys/amiga/winami.c @@ -62,8 +62,7 @@ struct window_procs amii_procs = { #ifdef CHANGE_COLOR /* only a Mac option currently */ amii_change_color, amii_get_color_string, #endif - /* other defs that really should go away (they're tty specific) */ - amii_delay_output, amii_delay_output, amii_outrip, genl_preference_update, + amii_outrip, genl_preference_update, genl_getmsghistory, genl_putmsghistory, genl_status_init, genl_status_finish, genl_status_enablefield, genl_status_update, @@ -97,8 +96,7 @@ struct window_procs amiv_procs = { #ifdef CHANGE_COLOR /* only a Mac option currently */ amii_change_color, amii_get_color_string, #endif - /* other defs that really should go away (they're tty specific) */ - amii_delay_output, amii_delay_output, amii_outrip, genl_preference_update, + amii_outrip, genl_preference_update, genl_getmsghistory, genl_putmsghistory, genl_status_init, genl_status_finish, genl_status_enablefield, genl_status_update, diff --git a/win/Qt/qt_bind.cpp b/win/Qt/qt_bind.cpp index 91dcf65fc..75a3620c1 100644 --- a/win/Qt/qt_bind.cpp +++ b/win/Qt/qt_bind.cpp @@ -1221,7 +1221,6 @@ struct window_procs Qt_procs = { #endif nethack_qt_::NetHackQtBind::qt_get_color_string, #endif - /* other defs that really should go away (they're tty specific) */ #ifdef GRAPHIC_TOMBSTONE nethack_qt_::NetHackQtBind::qt_outrip, #else diff --git a/win/shim/winshim.c b/win/shim/winshim.c index ed09d0b27..81bc7411d 100644 --- a/win/shim/winshim.c +++ b/win/shim/winshim.c @@ -158,7 +158,6 @@ VDECLCB(shim_change_background,(int white_or_black), "vi", A2P white_or_black) DECLCB(short, set_shim_font_name,(winid window_type, char *font_name),"2is", A2P window_type, P2V font_name) DECLCB(char *,shim_get_color_string,(void),"sv") -/* other defs that really should go away (they're tty specific) */ VDECLCB(shim_preference_update, (const char *pref), "vp", P2V pref) DECLCB(char *,shim_getmsghistory, (boolean init), "sb", A2P init) VDECLCB(shim_putmsghistory, (const char *msg, boolean restoring_msghist), "vsb", P2V msg, A2P restoring_msghist)