diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-25 12:39:51 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-05-25 12:41:02 -0600 |
commit | d525a99be1b02dda6c69007e31dd06f276378aea (patch) | |
tree | 1fc7017164c71811abc89b028e2fb99d87f8a33a /gdb/tui | |
parent | da505cff6e29b18244dc9f6886bcb4d436263dee (diff) | |
download | gdb-d525a99be1b02dda6c69007e31dd06f276378aea.zip gdb-d525a99be1b02dda6c69007e31dd06f276378aea.tar.gz gdb-d525a99be1b02dda6c69007e31dd06f276378aea.tar.bz2 |
Add "name" method to class interp
In a review Pedro pointed out that interp::name is intended to be
read-only, and so an accessor would be a better fit. This patch
renames the field and adds a "name" method that is used instead.
ChangeLog
2018-05-25 Tom Tromey <tom@tromey.com>
* tui/tui.c (tui_enable): Update.
* mi/mi-interp.c (mi_interp::init): Update.
* interps.h (class interp) <name>: New method.
<m_name>: Rename from name.
(~scoped_restore_interp): Update.
* interps.c (interp::interp): Update.
(interp_add, interp_set, interp_lookup_existing)
(current_interp_named_p): Update.
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 9e2520b..75a9ced 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -415,7 +415,7 @@ tui_enable (void) /* If the top level interpreter is not the console/tui (e.g., MI), enabling curses will certainly lose. */ - interp = top_level_interpreter ()->name; + interp = top_level_interpreter ()->name (); if (strcmp (interp, INTERP_TUI) != 0) error (_("Cannot enable the TUI when the interpreter is '%s'"), interp); |