mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
reorder methods
This commit is contained in:
parent
12d0586090
commit
99fb4a68c0
2 changed files with 13 additions and 13 deletions
|
|
@ -56,16 +56,6 @@ Glib::ustring Page::get_subtitle()
|
|||
}
|
||||
|
||||
// Actions
|
||||
bool Page::navigation_history_try_back()
|
||||
{
|
||||
return pageNavigation->history_try_back();
|
||||
}
|
||||
|
||||
bool Page::navigation_history_try_forward()
|
||||
{
|
||||
return pageNavigation->history_try_forward();
|
||||
}
|
||||
|
||||
void Page::refresh(
|
||||
const Glib::ustring & TITLE,
|
||||
const Glib::ustring & SUBTITLE,
|
||||
|
|
@ -251,4 +241,14 @@ void Page::navigation_update(
|
|||
{
|
||||
// @TODO search request
|
||||
}
|
||||
}
|
||||
|
||||
bool Page::navigation_history_try_back()
|
||||
{
|
||||
return pageNavigation->history_try_back();
|
||||
}
|
||||
|
||||
bool Page::navigation_history_try_forward()
|
||||
{
|
||||
return pageNavigation->history_try_forward();
|
||||
}
|
||||
|
|
@ -53,9 +53,6 @@ namespace app::browser::main::tab
|
|||
Glib::ustring get_subtitle();
|
||||
|
||||
// Actions
|
||||
bool navigation_history_try_back();
|
||||
bool navigation_history_try_forward();
|
||||
|
||||
void refresh(
|
||||
const Glib::ustring & TITLE,
|
||||
const Glib::ustring & SUBTITLE,
|
||||
|
|
@ -65,6 +62,9 @@ namespace app::browser::main::tab
|
|||
void navigation_update(
|
||||
const bool & HISTORY = false
|
||||
);
|
||||
|
||||
bool navigation_history_try_back();
|
||||
bool navigation_history_try_forward();
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue