GNOME Bugzilla – Bug 652201
Use GtkOrientable interface instead of deprecated V/H widgets
Last modified: 2011-06-09 16:33:07 UTC
These widgets were recently deprecated, breaking the build with GTK_DISABLE_DEPRECATED. Also, the default GtkBox:expand value has changed, so it's not a good idea to rely on it. The first patch fixes this.
Created attachment 189553 [details] [review] use gtk_box_pack_start() with EphyEmbed Using gtk_container_add() is a bad idea because default fill/expand values can change, and they happened to do in GTK+ 3.1.
Created attachment 189554 [details] [review] Use GtkOrientable interface instead of deprecated V/H widgets Gtk[HV]Box, Gtk[HV]Separator, Gtk[HV]Paned are deprecated in GTK+ 3.2, so let's use the GtkOrientable interface instead. GtkBox is likely to dissapear soon too, so a migration to GtkGrid might be necessary at some point.
Review of attachment 189553 [details] [review]: Looks good.
Review of attachment 189554 [details] [review]: Looks good.
Thanks for reviewing. Attachment 189553 [details] pushed as 0f61b9b - use gtk_box_pack_start() with EphyEmbed Attachment 189554 [details] pushed as ffae9a0 - Use GtkOrientable interface instead of deprecated V/H widgets