GNOME Bugzilla – Bug 107161
gtk_entry() should be get_entry(), with a const overload
Last modified: 2011-01-16 23:41:34 UTC
Currently, calling Gnome::UI::Entry::gtk_entry() returns a Gtk::Widget*. It ought to return a Gtk::Entry*. Almost never would we not want to have a Gtk::Entry* from that method, and having to dynamic_cast<Gtk::Entry*>() it is a major pain.
Added PATCH keyword because this is something we can fix easily, though it would be nice if we really did have a patch.
Fixed in CVS HEAD
Actually this should probably be get_entry() and get_entry() const.
Done.