After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 473750 - Gtk::EntryCompletion::set_popup_single_match is misnamed
Gtk::EntryCompletion::set_popup_single_match is misnamed
Status: RESOLVED FIXED
Product: gtkmm
Classification: Bindings
Component: general
unspecified
Other All
: Normal normal
: ---
Assigned To: gtkmm-forge
gtkmm-forge
Depends on:
Blocks:
 
 
Reported: 2007-09-05 00:56 UTC by Kevin Daughtridge
Modified: 2007-11-05 11:26 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Kevin Daughtridge 2007-09-05 00:56:33 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.
Comment 1 Murray Cumming 2007-10-05 08:05:18 UTC
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.
Comment 2 Murray Cumming 2007-11-05 11:26:43 UTC
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.