tui_add_win_to_layout is only ever called for the source or assembly
windows. This simplifies the function by removing the DATA_WIN case.
gdb/ChangeLog
2020-02-22 Tom Tromey <tom@tromey.com>
* tui/tui-layout.h (tui_add_win_to_layout): Add comment.
* tui/tui-layout.c (tui_add_win_to_layout): Add assert. Remove
DATA_WIN case.
Change-Id: Idfca902c6c90153acc5d19af4c33aa74bc3caf31
+2020-02-22 Tom Tromey <tom@tromey.com>
+
+ * tui/tui-layout.h (tui_add_win_to_layout): Add comment.
+ * tui/tui-layout.c (tui_add_win_to_layout): Add assert. Remove
+ DATA_WIN case.
+
2020-02-22 Tom Tromey <tom@tromey.com>
* tui/tui-disasm.c (tui_get_low_disassembly_address): Use
}
}
-/* Add the specified window to the layout in a logical way. This
- means setting up the most logical layout given the window to be
- added. */
+/* See tui-layout.h. */
+
void
tui_add_win_to_layout (enum tui_win_type type)
{
+ gdb_assert (type == SRC_WIN || type == DISASSEM_WIN);
+
enum tui_layout_type cur_layout = tui_current_layout ();
switch (type)
tui_set_layout (DISASSEM_COMMAND);
}
break;
- case DATA_WIN:
- if (cur_layout != SRC_DATA_COMMAND
- && cur_layout != DISASSEM_DATA_COMMAND)
- {
- if (cur_layout == DISASSEM_COMMAND)
- tui_set_layout (DISASSEM_DATA_COMMAND);
- else
- tui_set_layout (SRC_DATA_COMMAND);
- }
- break;
- default:
- break;
}
}
bool m_applied = false;
};
+/* Add the specified window to the layout in a logical way. This
+ means setting up the most logical layout given the window to be
+ added. Only the source or disassembly window can be added this
+ way. */
extern void tui_add_win_to_layout (enum tui_win_type);
+
extern void tui_set_layout (enum tui_layout_type);
/* Apply the current layout. */