diff options
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-data.c | 3 | ||||
-rw-r--r-- | gdb/tui/tui-data.h | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/gdb/tui/tui-data.c b/gdb/tui/tui-data.c index bb725c1..add1f33 100644 --- a/gdb/tui/tui-data.c +++ b/gdb/tui/tui-data.c @@ -262,8 +262,7 @@ tui_initialize_static_data () win->height = win->origin.x = win->origin.y = - win->viewport_height = - win->last_visible_line = 0; + win->viewport_height = 0; win->handle = NULL; win->is_visible = false; win->title = 0; diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index 08178e4..3493b5e 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -79,8 +79,6 @@ public: struct tui_point origin = {0, 0}; /* Viewport height. */ int viewport_height = 0; - /* Index of last visible line. */ - int last_visible_line = 0; /* Whether the window is visible or not. */ bool is_visible = false; /* Window title to display. */ |