Removed ui_ paging functions

This commit is contained in:
James Booth
2015-11-01 18:49:53 +00:00
parent 4fa2efc7ca
commit 8195ab42cb
4 changed files with 8 additions and 40 deletions

View File

@@ -553,27 +553,31 @@ _inp_rl_altright_handler(int count, int key)
static int
_inp_rl_pageup_handler(int count, int key)
{
ui_page_up();
ProfWin *current = wins_get_current();
win_page_up(current);
return 0;
}
static int
_inp_rl_pagedown_handler(int count, int key)
{
ui_page_down();
ProfWin *current = wins_get_current();
win_page_down(current);
return 0;
}
static int
_inp_rl_altpageup_handler(int count, int key)
{
ui_subwin_page_up();
ProfWin *current = wins_get_current();
win_sub_page_up(current);
return 0;
}
static int
_inp_rl_altpagedown_handler(int count, int key)
{
ui_subwin_page_down();
ProfWin *current = wins_get_current();
win_sub_page_down(current);
return 0;
}