update method name

This commit is contained in:
yggverse 2024-09-02 21:56:06 +03:00
parent f9c2e6ab87
commit 2e5ebda5db
4 changed files with 34 additions and 35 deletions

View file

@ -41,13 +41,6 @@ namespace app::browser::main::tab
page::Navbar * pageNavbar;
page::Progressbar * pageProgressbar;
// Helpers
void set(
const Glib::ustring & TITLE,
const Glib::ustring & SUBTITLE,
const double & PROGRESS
);
public:
Page(
@ -63,6 +56,13 @@ namespace app::browser::main::tab
// Actions
void back();
void forward();
void refresh(
const Glib::ustring & TITLE,
const Glib::ustring & SUBTITLE,
const double & PROGRESS
);
void update();
};
}