diff options
author | Tom Tromey <tom@tromey.com> | 2024-06-29 10:08:01 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-09-07 14:23:04 -0600 |
commit | 26d23d8e0242af67db3d2317b75ca783cdadd5b5 (patch) | |
tree | 84de89868630ffa5660dccddfae43a76f90f5c23 /gdb/tui/tui-command.c | |
parent | a35cc8ff85af39f571dcba2446ed47b6c65ddca9 (diff) | |
download | gdb-26d23d8e0242af67db3d2317b75ca783cdadd5b5.zip gdb-26d23d8e0242af67db3d2317b75ca783cdadd5b5.tar.gz gdb-26d23d8e0242af67db3d2317b75ca783cdadd5b5.tar.bz2 |
Remove tui_refresh_cmd_win
tui_refresh_cmd_win is no longer needed and can be replaced with a
call to the refresh_window method.
Diffstat (limited to 'gdb/tui/tui-command.c')
-rw-r--r-- | gdb/tui/tui-command.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/tui/tui-command.c b/gdb/tui/tui-command.c index 2060a36..677721d 100644 --- a/gdb/tui/tui-command.c +++ b/gdb/tui/tui-command.c @@ -51,11 +51,3 @@ tui_cmd_window::resize (int height_, int width_, int origin_x, int origin_y) wmove (handle.get (), 0, 0); } } - -/* See tui-command.h. */ - -void -tui_refresh_cmd_win (void) -{ - tui_cmd_win ()->refresh_window (); -} |