Create a signal with Gtkmm
问题 I am using the gtkmm library with C++, and I am trying to create a signal which allows to change current tab, but it does not work. Actually I think the problem comes from this line: menuit->signal_activate().connect([&bo]() {bo->next_page();}); Where: menuit = Gtk::MenuItem bo = Gtk::Notebook The code compiles well, but when executing I get this line : Segmentation fault (program exited with code: 139) Thank you a lot for your help ! 回答1: menuit->signal_activate().connect([&bo]() {bo->next