diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tui/tui-stack.c | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 35584db..401c742 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2019-09-20 Tom Tromey <tom@tromey.com> + * tui/tui-stack.c (tui_locator_window::set_locator_fullname): + Don't call tui_locator_win_info_ptr. + +2019-09-20 Tom Tromey <tom@tromey.com> + * tui/tui-win.c (tui_resize_all): Don't call refresh. 2019-09-20 Tom Tromey <tom@tromey.com> diff --git a/gdb/tui/tui-stack.c b/gdb/tui/tui-stack.c index 6bfbb0e..8301879 100644 --- a/gdb/tui/tui-stack.c +++ b/gdb/tui/tui-stack.c @@ -250,10 +250,8 @@ tui_locator_window::rerender () void tui_locator_window::set_locator_fullname (const char *fullname) { - struct tui_locator_window *locator = tui_locator_win_info_ptr (); - - locator->full_name[0] = 0; - strcat_to_buf (locator->full_name, MAX_LOCATOR_ELEMENT_LEN, fullname); + full_name[0] = 0; + strcat_to_buf (full_name, MAX_LOCATOR_ELEMENT_LEN, fullname); rerender (); } |