@@ -28,7 +28,7 @@ struct frame_info;
/* Locator window class. */
-struct tui_locator_window : public tui_gen_win_info
+struct tui_locator_window : public tui_win_info
{
tui_locator_window () = default;
@@ -42,6 +42,11 @@ struct tui_locator_window : public tui_gen_win_info
return 1;
}
+ bool can_box () const override
+ {
+ return false;
+ }
+
void rerender () override;
/* Update the locator, with the provided arguments.
@@ -62,6 +67,16 @@ struct tui_locator_window : public tui_gen_win_info
/* Architecture associated with code at this location. */
struct gdbarch *gdbarch = nullptr;
+protected:
+
+ void do_scroll_vertical (int n) override
+ {
+ }
+
+ void do_scroll_horizontal (int n) override
+ {
+ }
+
private:
/* Create the status line to display as much information as we can