summaryrefslogtreecommitdiff
path: root/scripts/kconfig
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2025-06-25 00:05:48 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2025-07-02 11:36:06 +0900
commitc34d632370592cb503991728afdf5287b2d1f7ed (patch)
tree0ff993969f28104c4b9ba5de2c921674e83f26c1 /scripts/kconfig
parent07944f94fc8c02344f283e461b1ea817a9108e17 (diff)
kconfig: gconf: use gtk_dialog_get_content_area() accessor
GTK 3 removes many implementation details and struct members from its public headers. Use the gtk_check_menu_item_get_active() accessor. [1]: https://gitlab.gnome.org/GNOME/gtk/-/blob/2.24.33/docs/reference/gtk/compiling.sgml#L85 Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r--scripts/kconfig/gconf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c
index a02078926274..28c4b5b37448 100644
--- a/scripts/kconfig/gconf.c
+++ b/scripts/kconfig/gconf.c
@@ -628,7 +628,7 @@ static void on_window1_size_request(GtkWidget *widget,
static gboolean on_window1_delete_event(GtkWidget *widget, GdkEvent *event,
gpointer user_data)
{
- GtkWidget *dialog, *label;
+ GtkWidget *dialog, *label, *content_area;
gint result;
gint ret = FALSE;
@@ -650,7 +650,8 @@ static gboolean on_window1_delete_event(GtkWidget *widget, GdkEvent *event,
GTK_RESPONSE_CANCEL);
label = gtk_label_new("\nSave configuration ?\n");
- gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label);
+ content_area = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
+ gtk_container_add(GTK_CONTAINER(content_area), label);
gtk_widget_show(label);
result = gtk_dialog_run(GTK_DIALOG(dialog));