rename update action method

This commit is contained in:
yggverse 2024-09-05 16:48:28 +03:00
parent d63ba8f1ad
commit c3df2818c6
7 changed files with 45 additions and 44 deletions

View file

@ -58,17 +58,17 @@ namespace app::browser::main
void close_right();
void close_all();
void page_update(
void page_navigation_update(
const int & PAGE_NUMBER
);
bool page_navigation_history_try_back(
const int & PAGE_NUMBER
);
bool page_navigation_history_try_back(
const int & PAGE_NUMBER
);
bool page_navigation_history_try_forward(
const int & PAGE_NUMBER
);
bool page_navigation_history_try_forward(
const int & PAGE_NUMBER
);
};
}