rename argument

This commit is contained in:
yggverse 2024-09-05 17:15:06 +03:00
parent 99fb4a68c0
commit 8047b6ef48
2 changed files with 3 additions and 3 deletions

View file

@ -75,10 +75,10 @@ void Page::refresh(
} }
void Page::navigation_update( void Page::navigation_update(
const bool & HISTORY const bool & ADD_HISTORY
) { ) {
// Update navigation history // Update navigation history
if (HISTORY) if (ADD_HISTORY)
{ {
pageNavigation->history_add( pageNavigation->history_add(
pageNavigation->get_request_text() pageNavigation->get_request_text()

View file

@ -60,7 +60,7 @@ namespace app::browser::main::tab
); );
void navigation_update( void navigation_update(
const bool & HISTORY = false const bool & ADD_HISTORY = false
); );
bool navigation_history_try_back(); bool navigation_history_try_back();