update namespaces

This commit is contained in:
yggverse 2024-08-27 16:27:56 +03:00
parent fe0586a054
commit fb71cfa2be
4 changed files with 31 additions and 27 deletions

View file

@ -36,17 +36,17 @@ Main::~Main()
}
void Main::set_title(
const Glib::ustring & TEXT
const Glib::ustring & VALUE
) {
mainTitle->set(
TEXT
VALUE
);
}
void Main::set_subtitle(
const Glib::ustring & TEXT
const Glib::ustring & VALUE
) {
mainSubtitle->set(
TEXT
VALUE
);
}

View file

@ -26,11 +26,11 @@ namespace app::browser::header
~Main();
void set_title(
const Glib::ustring & TEXT
const Glib::ustring & VALUE
);
void set_subtitle(
const Glib::ustring & TEXT
const Glib::ustring & VALUE
);
};
}