diff options
author | Tom Tromey <tom@tromey.com> | 2019-07-05 12:27:08 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-08-13 14:52:09 -0600 |
commit | 69258091762bce83b0f3dc9e07800b87bdc0649f (patch) | |
tree | 8755239e476e223dbc132998dbaeb4d34c21ee2d /gdb/tui | |
parent | 62cf57fee7d72d0c2df2be4d999d63ea3bfafa43 (diff) | |
download | gdb-69258091762bce83b0f3dc9e07800b87bdc0649f.zip gdb-69258091762bce83b0f3dc9e07800b87bdc0649f.tar.gz gdb-69258091762bce83b0f3dc9e07800b87bdc0649f.tar.bz2 |
Remove tui_make_all_visible
The function tui_make_all_visible is not used, so remove it.
gdb/ChangeLog
2019-08-13 Tom Tromey <tom@tromey.com>
* tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
* tui/tui-wingeneral.c (tui_make_all_visible): Remove.
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-wingeneral.c | 6 | ||||
-rw-r--r-- | gdb/tui/tui-wingeneral.h | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/gdb/tui/tui-wingeneral.c b/gdb/tui/tui-wingeneral.c index dc55631..92a678c 100644 --- a/gdb/tui/tui-wingeneral.c +++ b/gdb/tui/tui-wingeneral.c @@ -175,12 +175,6 @@ make_all_visible (bool visible) } void -tui_make_all_visible (void) -{ - make_all_visible (true); -} - -void tui_make_all_invisible (void) { make_all_visible (false); diff --git a/gdb/tui/tui-wingeneral.h b/gdb/tui/tui-wingeneral.h index d0a8ef9..3c035aa 100644 --- a/gdb/tui/tui-wingeneral.h +++ b/gdb/tui/tui-wingeneral.h @@ -28,7 +28,6 @@ struct tui_win_info; struct tui_gen_win_info; extern void tui_unhighlight_win (struct tui_win_info *); -extern void tui_make_all_visible (void); extern void tui_make_all_invisible (void); extern void tui_make_window (struct tui_gen_win_info *, enum tui_box); extern void tui_highlight_win (struct tui_win_info *); |