implement set_title method

This commit is contained in:
yggverse 2024-08-20 15:25:31 +03:00
parent 233471c22b
commit 98a572a1c0
4 changed files with 27 additions and 1 deletions

View file

@ -21,4 +21,12 @@ Main::Main()
Main::~Main()
{
delete title;
}
void Main::set_title(
const Glib::ustring text
) {
title->set_text(
text
);
}