diff options
author | Tom Tromey <tom@tromey.com> | 2019-09-02 08:10:44 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-09-20 13:49:11 -0600 |
commit | 7226433c44e3792aeea6ad19c54cd3056ea4308e (patch) | |
tree | ba289eadff1409fab0cd88674cd9086a1ba578c8 /gdb/tui/tui-source.h | |
parent | 80df33379eb01e5cf959f3db8d6b1dec9bc6a03b (diff) | |
download | gdb-7226433c44e3792aeea6ad19c54cd3056ea4308e.zip gdb-7226433c44e3792aeea6ad19c54cd3056ea4308e.tar.gz gdb-7226433c44e3792aeea6ad19c54cd3056ea4308e.tar.bz2 |
Rename a private data member in tui_source_window
This renames tui_source_window::fullname to add the "m_" prefix, as it
is a private data member.
gdb/ChangeLog
2019-09-20 Tom Tromey <tom@tromey.com>
* tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
from "fullname".
* tui/tui-source.c (tui_source_window::set_contents)
(tui_source_window::location_matches_p)
(tui_source_window::maybe_update): Update.
Diffstat (limited to 'gdb/tui/tui-source.h')
-rw-r--r-- | gdb/tui/tui-source.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tui/tui-source.h b/gdb/tui/tui-source.h index 30728e4..3ef737c 100644 --- a/gdb/tui/tui-source.h +++ b/gdb/tui/tui-source.h @@ -77,7 +77,7 @@ private: bool line_is_displayed (int line) const; /* It is the resolved form as returned by symtab_to_fullname. */ - gdb::unique_xmalloc_ptr<char> fullname; + gdb::unique_xmalloc_ptr<char> m_fullname; /* A token used to register and unregister an observer. */ gdb::observers::token m_observable; |