From 1cb90f925edfcc182477b76629b21e4c617c3e75 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 10 Jul 2019 11:28:54 +0200 Subject: [PATCH] gtk.cfg: Add gtk_box_new(), gtk_hbox_new() and gtk_vbox_new() (#1975) References: https://developer.gnome.org/gtk3/stable/GtkBox.html#gtk-box-new https://developer.gnome.org/gtk3/stable/GtkHBox.html#gtk-hbox-new https://developer.gnome.org/gtk3/stable/GtkVBox.html#gtk-vbox-new Found by daca@home --- cfg/gtk.cfg | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/cfg/gtk.cfg b/cfg/gtk.cfg index 53422ee0d..c85bbeab1 100644 --- a/cfg/gtk.cfg +++ b/cfg/gtk.cfg @@ -6284,6 +6284,19 @@ false + + + false + + + + + + + + + + false @@ -6316,6 +6329,20 @@ false + + + false + + + gtk_hbox_new has been deprecated since version 3.2 and should not be used in newly-written code. You can use gtk_box_new() with GTK_ORIENTATION_HORIZONTAL instead, which is a quick and easy change. But the recommendation is to switch to GtkGrid, since GtkBox is going to go away eventually. See Migrating from other containers to GtkGrid. + + + + + + + + false @@ -6560,6 +6587,20 @@ false + + + false + + + gtk_vbox_new has been deprecated since version 3.2 and should not be used in newly-written code. You can use gtk_box_new() with GTK_ORIENTATION_VERTICAL instead, which is a quick and easy change. But the recommendation is to switch to GtkGrid, since GtkBox is going to go away eventually. See Migrating from other containers to GtkGrid. + + + + + + + + false