mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
Remove tui_source_window::show_symtab_source
tui_source_window::show_symtab_source is identical to update_source_window, so remove the former. gdb/ChangeLog 2019-12-20 Tom Tromey <tom@tromey.com> * tui/tui-winsource.c (tui_update_source_windows_with_addr) (tui_update_source_windows_with_line): Call update_source_window. * tui/tui-source.h (struct tui_source_window) <show_symtab_source>: Don't declare. * tui/tui-source.c (tui_source_window::show_symtab_source): Remove. Change-Id: I41781df2126e8bafad46d058532d52602a288e06
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
2019-12-20 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
|
* tui/tui-winsource.c (tui_update_source_windows_with_addr)
|
||||||
|
(tui_update_source_windows_with_line): Call update_source_window.
|
||||||
|
* tui/tui-source.h (struct tui_source_window)
|
||||||
|
<show_symtab_source>: Don't declare.
|
||||||
|
* tui/tui-source.c (tui_source_window::show_symtab_source):
|
||||||
|
Remove.
|
||||||
|
|
||||||
2019-12-20 Tom Tromey <tom@tromey.com>
|
2019-12-20 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* tui/tui-winsource.c (tui_update_source_windows_with_addr): Call
|
* tui/tui-winsource.c (tui_update_source_windows_with_addr): Call
|
||||||
|
@ -125,18 +125,6 @@ tui_source_window::set_contents (struct gdbarch *arch,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Function to display source in the source window. This function
|
|
||||||
initializes the horizontal scroll to 0. */
|
|
||||||
void
|
|
||||||
tui_source_window::show_symtab_source (struct gdbarch *gdbarch,
|
|
||||||
struct symtab *s,
|
|
||||||
struct tui_line_or_address line)
|
|
||||||
{
|
|
||||||
horizontal_offset = 0;
|
|
||||||
update_source_window_as_is (gdbarch, s, line);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Answer whether the source is currently displayed in the source
|
/* Answer whether the source is currently displayed in the source
|
||||||
window. */
|
window. */
|
||||||
bool
|
bool
|
||||||
|
@ -56,9 +56,6 @@ struct tui_source_window : public tui_source_window_base
|
|||||||
do_erase_source_content (_("[ No Source Available ]"));
|
do_erase_source_content (_("[ No Source Available ]"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void show_symtab_source (struct gdbarch *, struct symtab *,
|
|
||||||
struct tui_line_or_address);
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
void do_scroll_vertical (int num_to_scroll) override;
|
void do_scroll_vertical (int num_to_scroll) override;
|
||||||
|
@ -227,7 +227,7 @@ tui_update_source_windows_with_addr (struct gdbarch *gdbarch, CORE_ADDR addr)
|
|||||||
{
|
{
|
||||||
l.loa = LOA_LINE;
|
l.loa = LOA_LINE;
|
||||||
l.u.line_no = sal.line;
|
l.u.line_no = sal.line;
|
||||||
TUI_SRC_WIN->show_symtab_source (gdbarch, sal.symtab, l);
|
TUI_SRC_WIN->update_source_window (gdbarch, sal.symtab, l);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -261,7 +261,7 @@ tui_update_source_windows_with_line (struct symtab *s, int line)
|
|||||||
default:
|
default:
|
||||||
l.loa = LOA_LINE;
|
l.loa = LOA_LINE;
|
||||||
l.u.line_no = line;
|
l.u.line_no = line;
|
||||||
TUI_SRC_WIN->show_symtab_source (gdbarch, s, l);
|
TUI_SRC_WIN->update_source_window (gdbarch, s, l);
|
||||||
if (tui_current_layout () == SRC_DISASSEM_COMMAND)
|
if (tui_current_layout () == SRC_DISASSEM_COMMAND)
|
||||||
{
|
{
|
||||||
find_line_pc (s, line, &pc);
|
find_line_pc (s, line, &pc);
|
||||||
|
Reference in New Issue
Block a user