c++ - gtkmm treeview set_activate_on_single_click does not compile -


iam developping unix application in c++ using gtkmm gui package. in gui there nice treeview.

i want set activation of rows in treeview on double click. there function called:

set_activate_on_single_click(bool) 

however, if want call function so:

gtk::treeview *treeview = gtk::manage(new gtk::treeview); treeview->set_activate_on_single_click(false); 

the code not compile. error this:

error: ‘class gtk::treeview’ has no member named ‘set_activate_on_single_click’ 

it seems of treeview's methods can called, others cannot. have idea why? in advance.

nevermind, using gtkmm 3.4 instead of gtkmm 3.8. small details can pretty nagging


Comments

Popular posts from this blog

google app engine - 403 Forbidden POST - Flask WTForms -

Android layout hidden on keyboard show -

Parse xml element into list in Python -