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

@ -44,17 +44,6 @@ Page::Page(
);
}
// Getters
Glib::ustring Page::get_title()
{
return title;
}
Glib::ustring Page::get_subtitle()
{
return subtitle;
}
// Actions
void Page::refresh(
const Glib::ustring & TITLE,
@ -273,4 +262,15 @@ void Page::navigation_history_forward()
false
);
}
}
// Getters
Glib::ustring Page::get_title()
{
return title;
}
Glib::ustring Page::get_subtitle()
{
return subtitle;
}