GNOME Bugzilla – Bug 768819
libgnomedbmm: HTML documentation uses GTK+ type when it really means a gtkmm one
Last modified: 2016-08-19 18:50:48 UTC
Just a tiny one for someone who's very bored someday. :-) Couldn't see a libgnomedbmm category so hope this is close enough, and it actually describes gtkmm anyway. At the libgnomedbmm docs here: http://www.gtkmm.org/docs/libgnomedbmm-3.0/docs/tutorial/html/ch03.html We have an intro to the associated gtkmm, which lifts from its docs thusly: > To obtain a gtkmm instance from a C GObject instance, use the Glib::wrap() function. For instance: > > GtkButton* cbutton = get_a_button(); > GtkButton* button = Glib::wrap(cbutton); The last line, as in the tutorial this quote originated from - https://developer.gnome.org/gtkmm-tutorial/stable/sec-basics-gobj-and-wrap.html.en - should read: Gtk::Button* button = Glib::wrap(cbutton); HTH!
I change the bug product to libgnomedbmm, as this is not a gtkmm bug. As far as I know libgnomedbmm is an obsolete module that has not been maintained for many years. I wouldn't be surprised if this bug will not be fixed.
I thought it might be defunct but was worth double-checking. Yep, there's not much point in syncing/typo-correcting a doc mirror in an obsolete project. I'm happy to close in that case. Thanks for the reply!