tui_out_new is just a simple wrapper for 'new' and can be removed,
simplifying gdb a tiny bit.
tui_stdout = new pager_file (new tui_file (stdout));
tui_stderr = new tui_file (stderr);
tui_stdlog = new timestamped_file (tui_stderr);
- tui_out = tui_out_new (tui_stdout);
+ tui_out = new tui_ui_out (tui_stdout);
/* Create the default UI. */
tui_old_uiout = new cli_ui_out (gdb_stdout);
: cli_ui_out (stream, 0)
{
}
-
-tui_ui_out *
-tui_out_new (struct ui_file *stream)
-{
- return new tui_ui_out (stream);
-}
int m_start_of_line = 0;
};
-extern tui_ui_out *tui_out_new (struct ui_file *stream);
-
#endif /* TUI_TUI_OUT_H */