Tidy tui_delete_win
authorTom Tromey <tom@tromey.com>
Sun, 23 Jun 2019 22:38:06 +0000 (16:38 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 25 Jun 2019 13:48:52 +0000 (07:48 -0600)
tui_delete_win does its own NULL check, so ~tui_gen_win_info does not
need to do it.  Also, tui_delete_win has an extraneous "return".

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

* tui/tui-wingeneral.c (tui_delete_win): Remove "return".
* tui/tui-data.c (~tui_gen_win_info): Remove "if".

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

index 62e9053..ff05c1c 100644 (file)
@@ -1,5 +1,10 @@
 2019-06-25  Tom Tromey  <tom@tromey.com>
 
+       * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
+       * tui/tui-data.c (~tui_gen_win_info): Remove "if".
+
+2019-06-25  Tom Tromey  <tom@tromey.com>
+
        * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
        type.
        * tui/tui-data.h (struct tui_gen_win_info): Make constructor
index a018a4b..a62dbf4 100644 (file)
@@ -350,11 +350,7 @@ tui_source_window_base::tui_source_window_base (enum tui_win_type type)
 
 tui_gen_win_info::~tui_gen_win_info ()
 {
-  if (handle != NULL)
-    {
-      tui_delete_win (handle);
-      handle = NULL;
-    }
+  tui_delete_win (handle);
   xfree (title);
 }
 
index 13063ae..cf8d9fc 100644 (file)
@@ -63,8 +63,6 @@ tui_delete_win (WINDOW *window)
 {
   if (window != NULL)
     delwin (window);
-
-  return;
 }