diff options
Diffstat (limited to 'gdb/tui/tui-data.h')
-rw-r--r-- | gdb/tui/tui-data.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index f6aabaa..08d388f 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -44,7 +44,7 @@ struct tui_gen_win_info { } - ~tui_gen_win_info () + virtual ~tui_gen_win_info () { } @@ -246,7 +246,7 @@ struct tui_win_element }; /* This defines information about each logical window. */ -struct tui_win_info +struct tui_win_info : public tui_gen_win_info { protected: @@ -265,7 +265,7 @@ protected: public: - virtual ~tui_win_info (); + ~tui_win_info () override; /* Clear the pertinent detail in the window. */ virtual void clear_detail () = 0; @@ -311,8 +311,6 @@ public: void left_scroll (int num_to_scroll); void right_scroll (int num_to_scroll); - struct tui_gen_win_info generic; /* General window information. */ - /* Can this window ever be highlighted? */ bool can_highlight = false; |