Change tui_data_window::display_regs to bool
authorTom Tromey <tom@tromey.com>
Sun, 16 Jun 2019 20:04:11 +0000 (14:04 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 25 Jun 2019 13:48:31 +0000 (07:48 -0600)
This changes tui_data_window::display_regs to bool and updates the
uses.

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

* tui/tui-regs.c (tui_show_registers): Update.
* tui/tui-data.h (struct tui_data_window) <display_regs>: Now
bool.
* tui/tui-data.c (tui_data_window::clear_detail)
(tui_data_window): Update.

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

index 23a521dde84106ffa066aa0cd1d799c1f2b1db5b..62d12f04338dd0ece291450420475feb0c5f3b93 100644 (file)
@@ -1,3 +1,11 @@
+2019-06-25  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-regs.c (tui_show_registers): Update.
+       * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
+       bool.
+       * tui/tui-data.c (tui_data_window::clear_detail)
+       (tui_data_window): Update.
+
 2019-06-25  Tom Tromey  <tom@tromey.com>
 
        * tui/tui-windata.c (tui_display_all_data)
index 48332fa4b75c70dcfebe653c5973b9f513ff5e9d..5cdbc686480ca2dfb8bce88b27e87a8a6b7f6981 100644 (file)
@@ -195,7 +195,7 @@ tui_data_window::clear_detail ()
   regs_content = NULL;
   regs_content_count = 0;
   regs_column_count = 1;
-  display_regs = FALSE;
+  display_regs = false;
 }
 
 /* Accessor for the source execution info ptr.  */
@@ -503,7 +503,7 @@ tui_data_window::tui_data_window ()
   regs_content = NULL;
   regs_content_count = 0;
   regs_column_count = 1;
-  display_regs = FALSE;
+  display_regs = false;
   current_group = 0;
 }
 
@@ -621,7 +621,7 @@ tui_data_window::~tui_data_window ()
       data_content = NULL;
       data_content_count = 0;
       regs_column_count = 1;
-      display_regs = FALSE;
+      display_regs = false;
       generic.content = NULL;
       generic.content_size = 0;
     }
index 0acc5abd154a888f0930f7fbbf3307e0c2e4fcac..962db0d89bd446a8025add2f3c931c7f713c7f43 100644 (file)
@@ -357,7 +357,7 @@ struct tui_data_window : public tui_win_info
   tui_win_content regs_content;        /* Start of regs display content.  */
   int regs_content_count;
   int regs_column_count;
-  int display_regs;            /* Should regs be displayed at all?  */
+  bool display_regs;           /* Should regs be displayed at all?  */
   struct reggroup *current_group;
 
 protected:
index 451bcdfb364eedd59ea717fc567e0c9262126576..d7940af984be8daee9324248a9329c4962513951 100644 (file)
@@ -143,7 +143,7 @@ tui_show_registers (struct reggroup *group)
 
   /* Say that registers should be displayed, even if there is a
      problem.  */
-  TUI_DATA_WIN->display_regs = TRUE;
+  TUI_DATA_WIN->display_regs = true;
 
   if (target_has_registers && target_has_stack && target_has_memory)
     {