Remove two unused functions from the TUI
authorTom Tromey <tom@tromey.com>
Sun, 16 Jun 2019 16:04:49 +0000 (10:04 -0600)
committerTom Tromey <tom@tromey.com>
Sat, 22 Jun 2019 21:22:49 +0000 (15:22 -0600)
This removes two unused functions from the TUI.  According to
"git grep -G", they have never been used.

gdb/ChangeLog
2019-06-22  Tom Tromey  <tom@tromey.com>

* tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
declare.
* tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.

gdb/ChangeLog
gdb/tui/tui-data.c
gdb/tui/tui-data.h

index 7e7da824bad3ca4843f6468cd7b2cbf71730512b..78ea6cfb3eaba25e0976eaf6c991defd15b46026 100644 (file)
@@ -1,3 +1,9 @@
+2019-06-22  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
+       declare.
+       * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
+
 2019-06-22  Tom de Vries  <tdevries@suse.de>
 
        * dwarf2read.c (create_addrmap_from_aranges)
index 2df9cbcd07b0d0c102717fd25a5746a0e9ad4407..b67cb48c2e671b3810808c2280e5dc9466e27471 100644 (file)
@@ -604,59 +604,6 @@ tui_add_content_elements (struct tui_gen_win_info *win_info,
   return index_start;
 }
 
-
-/* Delete all curses windows associated with win_info, leaving
-   everything else intact.  */
-void
-tui_del_window (struct tui_win_info *win_info)
-{
-  struct tui_gen_win_info *generic_win;
-
-  switch (win_info->generic.type)
-    {
-    case SRC_WIN:
-    case DISASSEM_WIN:
-      generic_win = tui_locator_win_info_ptr ();
-      if (generic_win != NULL)
-       {
-         tui_delete_win (generic_win->handle);
-         generic_win->handle = NULL;
-         generic_win->is_visible = FALSE;
-       }
-      if (win_info->detail.source_info.fullname)
-        {
-          xfree (win_info->detail.source_info.fullname);
-          win_info->detail.source_info.fullname = NULL;
-        }
-      generic_win = win_info->detail.source_info.execution_info;
-      if (generic_win != NULL)
-       {
-         tui_delete_win (generic_win->handle);
-         generic_win->handle = NULL;
-         generic_win->is_visible = FALSE;
-       }
-      break;
-    case DATA_WIN:
-      if (win_info->generic.content != NULL)
-       {
-         tui_del_data_windows (win_info->detail.data_display_info.regs_content,
-                               win_info->detail.data_display_info.regs_content_count);
-         tui_del_data_windows (win_info->detail.data_display_info.data_content,
-                               win_info->detail.data_display_info.data_content_count);
-       }
-      break;
-    default:
-      break;
-    }
-  if (win_info->generic.handle != NULL)
-    {
-      tui_delete_win (win_info->generic.handle);
-      win_info->generic.handle = NULL;
-      win_info->generic.is_visible = FALSE;
-    }
-}
-
-
 void
 tui_free_window (struct tui_win_info *win_info)
 {
@@ -743,30 +690,6 @@ tui_free_win_content (struct tui_gen_win_info *win_info)
 }
 
 
-void
-tui_del_data_windows (tui_win_content content, 
-                     int content_size)
-{
-  int i;
-
-  /* Remember that data window content elements are of type struct
-     tui_gen_win_info *, each of which whose single element is a data
-     element.  */
-  for (i = 0; i < content_size; i++)
-    {
-      struct tui_gen_win_info *generic_win
-       = &content[i]->which_element.data_window;
-
-      if (generic_win != NULL)
-       {
-         tui_delete_win (generic_win->handle);
-         generic_win->handle = NULL;
-         generic_win->is_visible = FALSE;
-       }
-    }
-}
-
-
 void
 tui_free_data_content (tui_win_content content, 
                       int content_size)
index c42647b23037ae3804a33d82fc780ef9161a0109..c696feed2804fbc313d50932194a3f1e229bd542 100644 (file)
@@ -310,8 +310,6 @@ extern void tui_free_window (struct tui_win_info *);
 extern void tui_free_win_content (struct tui_gen_win_info *);
 extern void tui_free_data_content (tui_win_content, int);
 extern void tui_free_all_source_wins_content (void);
-extern void tui_del_window (struct tui_win_info *);
-extern void tui_del_data_windows (tui_win_content, int);
 extern struct tui_win_info *tui_partial_win_by_name (const char *);
 extern const char *tui_win_name (const struct tui_gen_win_info *);
 extern enum tui_layout_type tui_current_layout (void);
This page took 0.036553 seconds and 4 git commands to generate.