Renamed clear and close functions in ui

This commit is contained in:
James Booth
2013-04-21 17:35:57 +01:00
parent 4257fc87e5
commit 345c21bbce
3 changed files with 6 additions and 6 deletions

View File

@@ -513,14 +513,14 @@ ui_switch_win(const int i)
}
void
win_current_clear(void)
ui_clear_current(void)
{
wclear(current->win);
dirty = TRUE;
}
void
win_current_close(void)
ui_close_current(void)
{
window_free(current);
windows[current_index] = NULL;