aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/tui/tui-status.c16
-rw-r--r--gdb/tui/tui-status.h2
2 files changed, 7 insertions, 11 deletions
diff --git a/gdb/tui/tui-status.c b/gdb/tui/tui-status.c
index e61bf71..df4675f 100644
--- a/gdb/tui/tui-status.c
+++ b/gdb/tui/tui-status.c
@@ -262,13 +262,11 @@ tui_status_window::rerender ()
wmove (handle.get (), 0, 0);
}
-/* Function to print the frame information for the TUI. The windows are
- refreshed only if frame information has changed since the last refresh.
+/* Function to print the frame information for the TUI. The windows
+ are refreshed only if frame information has changed since the last
+ refresh. */
- Return true if frame information has changed (and windows
- subsequently refreshed), false otherwise. */
-
-bool
+void
tui_show_frame_info (frame_info_ptr fi)
{
bool status_changed_p;
@@ -292,7 +290,7 @@ tui_show_frame_info (frame_info_ptr fi)
not changed. If frame information has not changed, then the windows'
contents will not change. So don't bother refreshing the windows. */
if (!status_changed_p)
- return false;
+ return;
for (struct tui_source_window_base *win_info : tui_source_windows ())
{
@@ -307,13 +305,11 @@ tui_show_frame_info (frame_info_ptr fi)
status_changed_p = tui_location.set_location (NULL, sal, "");
if (!status_changed_p)
- return false;
+ return;
for (struct tui_source_window_base *win_info : tui_source_windows ())
win_info->erase_source_content ();
}
-
- return true;
}
void
diff --git a/gdb/tui/tui-status.h b/gdb/tui/tui-status.h
index 4a0f59a..efef537 100644
--- a/gdb/tui/tui-status.h
+++ b/gdb/tui/tui-status.h
@@ -51,6 +51,6 @@ private:
};
extern void tui_show_status_content (void);
-extern bool tui_show_frame_info (frame_info_ptr);
+extern void tui_show_frame_info (frame_info_ptr);
#endif /* TUI_TUI_STATUS_H */