]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Rename a private data member in tui_source_window
authorTom Tromey <tom@tromey.com>
Mon, 2 Sep 2019 14:10:44 +0000 (08:10 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 20 Sep 2019 19:49:11 +0000 (13:49 -0600)
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.

gdb/ChangeLog
gdb/tui/tui-source.c
gdb/tui/tui-source.h

index 96bf00595d613c6a781463a7589716e161c3e61b..3b2fdd2056584e87f1caa2a347dc03dd8e415dd4 100644 (file)
@@ -1,3 +1,11 @@
+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.
+
 2019-09-20  Tom Tromey  <tom@tromey.com>
 
        * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
index e6cc0dbc1a3dcf6ec08a0e5b4d7c10d9d31f8f4f..fa6ed7893fea279de446169fd66980b38829f659 100644 (file)
@@ -155,7 +155,7 @@ tui_source_window::set_contents (struct gdbarch *arch,
 
          title = s_filename;
 
-         fullname = make_unique_xstrdup (symtab_to_fullname (s));
+         m_fullname = make_unique_xstrdup (symtab_to_fullname (s));
 
          cur_line = 0;
          gdbarch = get_objfile_arch (SYMTAB_OBJFILE (s));
@@ -275,7 +275,7 @@ tui_source_window::location_matches_p (struct bp_location *loc, int line_no)
   return (content[line_no].line_or_addr.loa == LOA_LINE
          && content[line_no].line_or_addr.u.line_no == loc->line_number
          && loc->symtab != NULL
-         && filename_cmp (fullname.get (),
+         && filename_cmp (m_fullname.get (),
                           symtab_to_fullname (loc->symtab)) == 0);
 }
 
@@ -307,7 +307,7 @@ tui_source_window::maybe_update (struct frame_info *fi, symtab_and_line sal,
     start_line = 1;
 
   bool source_already_displayed = (sal.symtab != 0
-                                  && showing_source_p (fullname.get ()));
+                                  && showing_source_p (m_fullname.get ()));
 
   struct tui_line_or_address l;
 
index 30728e4214e4794ec7002e77c5a26c0b6ce69281..3ef737c56e91c0762eb47787369f94f7d3b8dd7c 100644 (file)
@@ -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;