reorder methods

This commit is contained in:
yggverse 2024-09-06 01:45:47 +03:00
parent 293fe791ce
commit 946211167b
6 changed files with 56 additions and 56 deletions

View file

@ -30,15 +30,6 @@ namespace app::browser::main
Tab();
// Getters
Glib::ustring get_page_title(
const int & PAGE_NUMBER
);
Glib::ustring get_page_subtitle(
const int & PAGE_NUMBER
);
// Actions
void refresh(
const int & PAGE_NUMBER // @TODO
@ -70,6 +61,15 @@ namespace app::browser::main
void page_navigation_history_forward(
const int & PAGE_NUMBER
);
// Getters
Glib::ustring get_page_title(
const int & PAGE_NUMBER
);
Glib::ustring get_page_subtitle(
const int & PAGE_NUMBER
);
};
}