aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-tui.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2024-06-29 10:07:20 -0600
committerTom Tromey <tom@tromey.com>2024-09-07 14:23:04 -0600
commita35cc8ff85af39f571dcba2446ed47b6c65ddca9 (patch)
treec1f19696ae63265036d8896dfb91cccee3a2f9cc /gdb/python/py-tui.c
parentd3acf3d759d085df544687b39a0c2900d3117bf7 (diff)
downloadbinutils-a35cc8ff85af39f571dcba2446ed47b6c65ddca9.zip
binutils-a35cc8ff85af39f571dcba2446ed47b6c65ddca9.tar.gz
binutils-a35cc8ff85af39f571dcba2446ed47b6c65ddca9.tar.bz2
Remove tui_wrefresh
This removes tui_wrefresh, moving the code into refresh_window. We remove tui_norefresh_window as well, because now the command window's refresh_window has to do what tui_wrefresh previously did.
Diffstat (limited to 'gdb/python/py-tui.c')
-rw-r--r--gdb/python/py-tui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/py-tui.c b/gdb/python/py-tui.c
index b3544c6..8ad2b7d 100644
--- a/gdb/python/py-tui.c
+++ b/gdb/python/py-tui.c
@@ -95,7 +95,7 @@ public:
{
wnoutrefresh (handle.get ());
touchwin (m_inner_window.get ());
- tui_wrefresh (m_inner_window.get ());
+ wnoutrefresh (m_inner_window.get ());
}
else
tui_win_info::refresh_window ();
@@ -275,7 +275,7 @@ tui_py_window::output (const char *text, bool full_window)
if (full_window)
check_and_display_highlight_if_needed ();
else
- tui_wrefresh (m_inner_window.get ());
+ wnoutrefresh (m_inner_window.get ());
}
}