remove default values, add follow argument

This commit is contained in:
yggverse 2024-09-05 23:04:53 +03:00
parent 4cde44025f
commit ab0c28badf
4 changed files with 25 additions and 15 deletions

View file

@ -38,7 +38,8 @@ namespace app::browser::main::tab::page
// Actions
void history_add(
const Glib::ustring & REQUEST
const Glib::ustring & REQUEST,
const bool & FOLLOW
);
void refresh();
@ -57,12 +58,15 @@ namespace app::browser::main::tab::page
Glib::ustring get_request_path();
Glib::ustring get_request_query();
// Actionable getters
bool try_history_back(
Glib::ustring & request
Glib::ustring & request,
const bool & FOLLOW
);
bool try_history_forward(
Glib::ustring & request
Glib::ustring & request,
const bool & FOLLOW
);
};
}