Remove UNDEFINED_ITEM define from TUI
authorTom Tromey <tom@tromey.com>
Sat, 29 Jun 2019 04:51:20 +0000 (22:51 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 17 Jul 2019 18:19:08 +0000 (12:19 -0600)
The TUI defined UNDEFINED_ITEM, but only used it in a single spot.  I
think this isn't very useful, so this removes the define.

gdb/ChangeLog
2019-07-17  Tom Tromey  <tom@tromey.com>

* tui/tui-data.h (UNDEFINED_ITEM): Remove define.
(struct tui_data_item_window): Update.

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

index b0a4fd6abe91de72d1b9e573fd664406a5ea3a31..ee17d503b13787e5e28ad279c946608443ad5c5a 100644 (file)
@@ -1,3 +1,8 @@
+2019-07-17  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
+       (struct tui_data_item_window): Update.
+
 2019-07-17  Tom Tromey  <tom@tromey.com>
 
        * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
index de52215dc16a9a702817411605a014e489a2ec7c..125b4ae4c5d8e4d2181113dfe8b0f6e8efa9b105 100644 (file)
@@ -104,7 +104,6 @@ enum tui_box
 #define DISASSEM_NAME           "asm"
 #define HILITE                  TRUE
 #define NO_HILITE               FALSE
-#define UNDEFINED_ITEM          -1
 #define MIN_WIN_HEIGHT          3
 #define MIN_CMD_WIN_HEIGHT      3
 
@@ -263,7 +262,7 @@ struct tui_data_item_window : public tui_gen_win_info
 
   const char *name = nullptr;
   /* The register number, or data display number.  */
-  int item_no = UNDEFINED_ITEM;
+  int item_no = -1;
   void *value = nullptr;
   bool highlight = false;
   char *content = nullptr;