aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-06-16 10:42:09 -0600
committerTom Tromey <tom@tromey.com>2019-06-25 07:48:26 -0600
commit8761a91b2614304963bfe211ff8c682c7eba3b51 (patch)
tree5407f564c3d3788c0f9e491cbdc2e5b4f0a0da2e /gdb/ChangeLog
parent0ed69edaab683b9290a05962faa50d970facfa84 (diff)
downloadbinutils-8761a91b2614304963bfe211ff8c682c7eba3b51.zip
binutils-8761a91b2614304963bfe211ff8c682c7eba3b51.tar.gz
binutils-8761a91b2614304963bfe211ff8c682c7eba3b51.tar.bz2
Introduce tui_win_info::clear_detail method
This introduces the clear_detail method and updates the various subclasses of tui_win_info to implement it. A subsequent patch will remove tui_clear_win_detail, but that isn't done for now because at this point it isn't readily obvious that the NULL check is not needed. gdb/ChangeLog 2019-06-25 Tom Tromey <tom@tromey.com> * tui/tui-data.h (struct tui_win_info, struct tui_source_window) (struct tui_data_window, struct tui_cmd_window): Declare clear_detail method. * tui/tui-data.c (tui_source_window::clear_detail) (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New methods. (tui_clear_win_detail): Simplify.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a9f7089..cf6dff8 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,15 @@
2019-06-25 Tom Tromey <tom@tromey.com>
+ * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
+ (struct tui_data_window, struct tui_cmd_window): Declare
+ clear_detail method.
+ * tui/tui-data.c (tui_source_window::clear_detail)
+ (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
+ methods.
+ (tui_clear_win_detail): Simplify.
+
+2019-06-25 Tom Tromey <tom@tromey.com>
+
* tui/tui-layout.c (make_source_window, make_disasm_window)
(make_source_or_disasm_window): Remove win_info_ptr parameter.
Return the new window.