]> gitweb.michael.orlitzky.com - xfce4-hdaps.git/commit
xfce4-hdaps-dialogs.c: switch from hbox/vbox to generic box.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 23 Oct 2019 13:11:28 +0000 (09:11 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 26 Oct 2019 14:41:07 +0000 (10:41 -0400)
commit05a5da89a97689a8a6a06e1e6c34fedc0e5a6f35
tree3c95f4ff27c27e4565ef1015b754afb3198fbb65
parentc4bc79ca98f1f556a39ddba593d01a09b7b4bc9f
xfce4-hdaps-dialogs.c: switch from hbox/vbox to generic box.

The gtk_vbox_new() and gtk_hbox_new() functions have been deprecated
as of gtk+-3.2. Instead, we're supposed to use the generic gtk_box_new()
function and pass in an orientation like GTK_ORIENTATION_VERTICAL. Ok,
no problem. That change is somewhat trivial.

But, in a related change, a GtkDialog no longer exposes its content
vbox via a member variable in gtk+-3.x. So, we have to get it with the
gtk_dialog_get_content_area() accessor function. This change is also
trivial, once you have figured out that the vbox it accesses is the
same one that was removed from the public API of GtkDialog. I sure
hope it is.
panel-plugin/xfce4-hdaps-dialogs.c