2.13.1: 2008-06-02 Peter Wainright * gtk/src/bin.ccg: add_label(): Correct the order of parameters given to the Label constructor. Bug #534685. 2008-05-31 Dodji Seketeli * pango/src/attributes.hg: the const qualifier of the returned type was silently ignored by gcc in : PangoAttribute* const gobj() const { return gobject_; }. Changed that to: const PangoAttribute* gobj() const { return gobject_; } I don't thing this results in an ABI break though. This helps gcc 4.3 to stop crying. 2008-05-14 Murray Cumming * gtk/src/gtk_docs_override.xml: Add custom documentation for the gtk_image_set_from_*() functions, because they refer to new_from_* functions instead of our constructors. * gtk/src/image.hg: Add documentation for the constructors. 2008-05-14 Gennaro Bellizio * gtk/src/entry.hg: Added the shadow_type property that was added to GTK+ in 2.12. Bug #532744 2008-04-29 Murray Cumming * gdk/src/pixbufanimationiter.[hg|cc]: Added get_pixbuf(), get_delay_time(), advance(), on_currently_loading_frame(). * gdk/src/gdk_docs_override.xml: Customized the documentation for these methods, to avoid C-specific advice, and to add @newin2p14. Bug #528037 (Balazs Tirpak) 2008-04-29 Murray Cumming * gdk/src/window.ccg: * gdk/src/window.hg: Added unset_back_pixmap(). * gdk/src/gdk_docs_override.xml: Changed the back_pixmap() documentation to not mention NULL, and to refer to unset_back_pixmap(). This fixes bug #525967 (Jonathon Jongsma). 2008-04-11 Andreas Klaedtke * gtk/src/widget.hg: get_direction(): Add a const version and deprecate the non-const version. Bug #526742. 2008-04-11 Armin Burgmeier * gtk/src/recentinfo.ccg: * gtk/src/recentinfo.hg: Added a specialization for Glib::Value > so that Glib::RefPtr can be used with Glib::Value<> and Gtk::TreeModelColumn<>.