drop sigc dependency

This commit is contained in:
yggverse 2024-08-16 19:45:42 +03:00
parent 40bc2ccfbd
commit 626997af14
9 changed files with 52 additions and 100 deletions

View file

@ -13,10 +13,13 @@ Tab::Tab()
// Init events
signal_switch_page().connect(
sigc::mem_fun(
* this,
& Tab::on_switch
)
[this](Gtk::Widget * page, guint page_num)
{
on_switch(
page,
page_num
);
}
);
}