mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
remove default values, add follow argument
This commit is contained in:
parent
4cde44025f
commit
ab0c28badf
4 changed files with 25 additions and 15 deletions
|
|
@ -78,7 +78,8 @@ void Page::navigation_update(
|
|||
if (ADD_HISTORY)
|
||||
{
|
||||
pageNavigation->history_add(
|
||||
pageNavigation->get_request_text()
|
||||
pageNavigation->get_request_text(),
|
||||
true
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -246,7 +247,7 @@ void Page::navigation_history_back()
|
|||
{
|
||||
Glib::ustring request;
|
||||
|
||||
if (pageNavigation->try_history_back(request))
|
||||
if (pageNavigation->try_history_back(request, true))
|
||||
{
|
||||
pageNavigation->set_request_text(
|
||||
request
|
||||
|
|
@ -262,7 +263,7 @@ void Page::navigation_history_forward()
|
|||
{
|
||||
Glib::ustring request;
|
||||
|
||||
if (pageNavigation->try_history_forward(request))
|
||||
if (pageNavigation->try_history_forward(request, true))
|
||||
{
|
||||
pageNavigation->set_request_text(
|
||||
request
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue