Remove parameters from tui_show_source

tui_show_source does not need its parameters, so this removes them.

gdb/ChangeLog
2019-12-20  Tom Tromey  <tom@tromey.com>

	* tui/tui.h (tui_show_source): Remove parameters.
	* tui/tui.c (tui_show_source): Remove parameters.
	* tui/tui-out.c (tui_ui_out::do_field_string): Update.

Change-Id: I7cbcf20175b459c269549f1832d4fb844cc573db
This commit is contained in:
Tom Tromey
2019-11-12 16:30:24 -07:00
parent c1b167d76e
commit 5ebd54023c
4 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2019-12-20 Tom Tromey <tom@tromey.com>
* tui/tui.h (tui_show_source): Remove parameters.
* tui/tui.c (tui_show_source): Remove parameters.
* tui/tui-out.c (tui_ui_out::do_field_string): Update.
2019-12-20 Tom Tromey <tom@tromey.com> 2019-12-20 Tom Tromey <tom@tromey.com>
* tui/tui.c (tui_show_source): Update. * tui/tui.c (tui_show_source): Update.

View File

@ -61,7 +61,7 @@ tui_ui_out::do_field_string (int fldno, int width, ui_align align,
if (fldname && m_line > 0 && strcmp (fldname, "fullname") == 0) if (fldname && m_line > 0 && strcmp (fldname, "fullname") == 0)
{ {
tui_show_source (string, m_line); tui_show_source ();
return; return;
} }

View File

@ -627,14 +627,14 @@ tui_reset (void)
#endif #endif
void void
tui_show_source (const char *fullname, int line) tui_show_source ()
{ {
struct symtab_and_line cursal = get_current_source_symtab_and_line (); struct symtab_and_line cursal = get_current_source_symtab_and_line ();
/* Make sure that the source window is displayed. */ /* Make sure that the source window is displayed. */
tui_add_win_to_layout (SRC_WIN); tui_add_win_to_layout (SRC_WIN);
tui_update_source_windows_with_line (cursal.symtab, line); tui_update_source_windows_with_line (cursal.symtab, cursal.line);
tui_update_locator_fullname (cursal.symtab); tui_update_locator_fullname (cursal.symtab);
} }

View File

@ -83,6 +83,6 @@ extern void tui_set_key_mode (enum tui_key_mode mode);
extern int tui_active; extern int tui_active;
extern void tui_show_source (const char *fullname, int line); extern void tui_show_source ();
#endif /* TUI_TUI_H */ #endif /* TUI_TUI_H */