mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
reorder methods
This commit is contained in:
parent
293fe791ce
commit
946211167b
6 changed files with 56 additions and 56 deletions
|
|
@ -22,21 +22,6 @@ Main::Main()
|
|||
);
|
||||
}
|
||||
|
||||
// Getters
|
||||
Glib::ustring Main::get_current_tab_page_title()
|
||||
{
|
||||
return mainTab->get_page_title(
|
||||
mainTab->get_current_page()
|
||||
);
|
||||
};
|
||||
|
||||
Glib::ustring Main::get_current_tab_page_subtitle()
|
||||
{
|
||||
return mainTab->get_page_subtitle(
|
||||
mainTab->get_current_page()
|
||||
);
|
||||
};
|
||||
|
||||
// Actions
|
||||
void Main::refresh()
|
||||
{
|
||||
|
|
@ -92,4 +77,19 @@ void Main::tab_page_navigation_history_forward()
|
|||
mainTab->page_navigation_history_forward(
|
||||
mainTab->get_current_page() // @TODO
|
||||
);
|
||||
};
|
||||
|
||||
// Getters
|
||||
Glib::ustring Main::get_current_tab_page_title()
|
||||
{
|
||||
return mainTab->get_page_title(
|
||||
mainTab->get_current_page()
|
||||
);
|
||||
};
|
||||
|
||||
Glib::ustring Main::get_current_tab_page_subtitle()
|
||||
{
|
||||
return mainTab->get_page_subtitle(
|
||||
mainTab->get_current_page()
|
||||
);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue