GNOME Bugzilla – Bug 473750
Gtk::EntryCompletion::set_popup_single_match is misnamed
Last modified: 2007-11-05 11:26:43 UTC
In Gtk::EntryCompletion on gtkmm trunk, set_popup_single_match is misnamed as set_popup_single_width, though it wraps the correct GTK+ function. "popup-single-match" was probably confused with "popup-set-width". The get_() and property_() wrappers for this property are correctly named.
We'll have to wait for gtkmm 2.12 to fix this, by deprecating the wrongly-named function and adding the correct one. In the meantime, you can use gob() with the C function.
Fixed in svn trunk, so this will appear in a future 2007-11-05 Murray Cumming <murrayc@murrayc.com> * gtk/src/entrycompletion.hg: Added set_popup_single_match(), deprecated the wrongly-named set_popup_single_width(). Bug #473750 (Kevin Daughtridge). Added a const version of get_text_column() and deprecated the non-const version. Thanks.