Make tui_win_info::make_window non-virtual

Nothing overrides tui_win_info::make_window, so remove the "virtual".
Tested by rebuilding.
This commit is contained in:
Tom Tromey
2024-04-27 09:30:09 -06:00
parent 444c60fe33
commit f95ecfc6e0

View File

@@ -50,7 +50,8 @@ protected:
window's contents. */
virtual void rerender ();
virtual void make_window ();
/* Create the curses window. */
void make_window ();
public:
tui_win_info (tui_win_info &&) = default;