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
293fe791ce
commit
946211167b
6 changed files with 56 additions and 56 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
@ -48,10 +48,6 @@ namespace app::browser::main::tab
|
|||
const Glib::ustring & REQUEST = ""
|
||||
);
|
||||
|
||||
// Getters
|
||||
Glib::ustring get_title();
|
||||
Glib::ustring get_subtitle();
|
||||
|
||||
// Actions
|
||||
void refresh(
|
||||
const Glib::ustring & TITLE,
|
||||
|
|
@ -65,6 +61,10 @@ namespace app::browser::main::tab
|
|||
|
||||
void navigation_history_back();
|
||||
void navigation_history_forward();
|
||||
|
||||
// Getters
|
||||
Glib::ustring get_title();
|
||||
Glib::ustring get_subtitle();
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue