tui_refresh_cmd_win is no longer needed and can be replaced with a
call to the refresh_window method.
wmove (handle.get (), 0, 0);
}
}
-
-/* See tui-command.h. */
-
-void
-tui_refresh_cmd_win (void)
-{
- tui_cmd_win ()->refresh_window ();
-}
return dynamic_cast<tui_cmd_window *> (tui_win_list[CMD_WIN]);
}
-/* Refresh the command window. */
-extern void tui_refresh_cmd_win (void);
-
#endif /* TUI_TUI_COMMAND_H */
{
tui_puts (linebuffer);
if (!m_buffered)
- tui_refresh_cmd_win ();
+ tui_cmd_win ()->refresh_window ();
}
void
{
tui_write (buf, length_buf);
if (!m_buffered)
- tui_refresh_cmd_win ();
+ tui_cmd_win ()->refresh_window ();
}
void
tui_file::flush ()
{
if (m_buffered)
- tui_refresh_cmd_win ();
+ tui_cmd_win ()->refresh_window ();
stdio_file::flush ();
}