This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Remove tui_make_all_visible


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=69258091762bce83b0f3dc9e07800b87bdc0649f

commit 69258091762bce83b0f3dc9e07800b87bdc0649f
Author: Tom Tromey <tom@tromey.com>
Date:   Fri Jul 5 12:27:08 2019 -0600

    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.

Diff:
---
 gdb/ChangeLog            | 5 +++++
 gdb/tui/tui-wingeneral.c | 6 ------
 gdb/tui/tui-wingeneral.h | 1 -
 3 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 4276b33..9bb9cfd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 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.
+
+2019-08-13  Tom Tromey  <tom@tromey.com>
+
 	* tui/tui-layout.c (current_layout, tui_current_layout): Move from
 	tui-data.c.
 	(show_source_disasm_command, show_data)
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 *);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]