+2019-06-25 Tom Tromey <tom@tromey.com>
+
+ * tui/tui-data.h (tui_alloc_win_info): Don't declare.
+ * tui/tui-layout.c (init_and_make_win): Use "new" directly.
+ * tui/tui-data.c (tui_alloc_win_info): Remove.
+
2019-06-25 Tom Tromey <tom@tromey.com>
* tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
start_line_or_addr.u.addr = 0;
}
-struct tui_win_info *
-tui_alloc_win_info (enum tui_win_type type)
-{
- switch (type)
- {
- case SRC_WIN:
- return new tui_source_window ();
-
- case DISASSEM_WIN:
- return new tui_disasm_window ();
-
- case DATA_WIN:
- return new tui_data_window ();
-
- case CMD_WIN:
- return new tui_cmd_window ();
- }
-
- gdb_assert_not_reached (_("Unhandled window type"));
-}
-
-
/* Allocates the content and elements in a block. */
tui_win_content
tui_alloc_content (int num_elements, enum tui_win_type type)
/* Data Manipulation Functions. */
extern void tui_initialize_static_data (void);
-extern struct tui_win_info *tui_alloc_win_info (enum tui_win_type);
extern void tui_init_generic_part (struct tui_gen_win_info *);
extern tui_win_content tui_alloc_content (int, enum tui_win_type);
extern int tui_add_content_elements (struct tui_gen_win_info *,
{
if (win_info == NULL)
{
- if (tui_win_is_auxillary (win_type))
- win_info = new tui_gen_win_info (win_type);
- else
- win_info = tui_alloc_win_info (win_type);
+ switch (win_type)
+ {
+ case SRC_WIN:
+ win_info = new tui_source_window ();
+ break;
+
+ case DISASSEM_WIN:
+ win_info = new tui_disasm_window ();
+ break;
+
+ case DATA_WIN:
+ win_info = new tui_data_window ();
+ break;
+
+ case CMD_WIN:
+ win_info = new tui_cmd_window ();
+ break;
+
+ default:
+ gdb_assert (tui_win_is_auxillary (win_type));
+ win_info = new tui_gen_win_info (win_type);
+ break;
+ }
}
win_info->reset (win_type, height, width, origin_x, origin_y);