+2019-06-25 Tom Tromey <tom@tromey.com>
+
+ * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
+ * tui/tui-win.c (make_invisible_and_set_new_height): Update.
+ * tui/tui-layout.c (init_and_make_win): Update.
+ * tui/tui.h (enum tui_win_type): Update.
+ * tui/tui-data.h (tui_win_is_auxiliary): Rename from
+ tui_win_is_auxillary.
+ * tui/tui-data.c (tui_win_is_auxiliary): Rename from
+ tui_win_is_auxillary.
+
2019-06-25 Tom Tromey <tom@tromey.com>
* tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
**********************************/
int
-tui_win_is_auxillary (enum tui_win_type win_type)
+tui_win_is_auxiliary (enum tui_win_type win_type)
{
return (win_type > MAX_MAJOR_WINDOWS);
}
void do_make_visible_with_new_height () override;
};
-extern int tui_win_is_auxillary (enum tui_win_type win_type);
+extern int tui_win_is_auxiliary (enum tui_win_type win_type);
/* Global Data. */
break;
default:
- gdb_assert (tui_win_is_auxillary (win_type));
+ gdb_assert (tui_win_is_auxiliary (win_type));
win_info = new tui_gen_win_info (win_type);
break;
}
}
}
-/* Function make the target window (and auxillary windows associated
+/* Function make the target window (and auxiliary windows associated
with the targer) invisible, and set the new height and
location. */
static void
if (win_info != TUI_CMD_WIN)
win_info->viewport_height--;
- /* Now deal with the auxillary windows associated with win_info. */
+ /* Now deal with the auxiliary windows associated with win_info. */
win_info->set_new_height (height);
}
{
if (!is_visible)
{
- tui_make_window (this, (tui_win_is_auxillary (type)
+ tui_make_window (this, (tui_win_is_auxiliary (type)
? DONT_BOX_WINDOW : BOX_WINDOW));
is_visible = true;
}
CMD_WIN,
/* This must ALWAYS be AFTER the major windows last. */
MAX_MAJOR_WINDOWS,
- /* Auxillary windows. */
+ /* Auxiliary windows. */
LOCATOR_WIN,
EXEC_INFO_WIN,
DATA_ITEM_WIN