From b76251abaf279603367ae730b9194fb20861fdb9 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sun, 1 Sep 2019 08:10:18 -0600 Subject: Remove a call to tui_locator_win_info_ptr Commit e594a5d1 ("Turn two locator functions into methods") turned set_locator_fullname into a method on tui_locator_window. I missed it at the time, but this change allows for the removal of a call to tui_locator_win_info_ptr. gdb/ChangeLog 2019-09-20 Tom Tromey * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Don't call tui_locator_win_info_ptr. --- gdb/tui/tui-stack.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'gdb/tui') 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 (); } -- cgit v1.1