From f1d486c32b3221cb8f03dec67b31098528138095 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Wed, 18 Oct 2023 02:46:45 -0400 Subject: dictionary applet: fix in-process build warning *For a GtkButtonBox we must specify it as GTK_BUTTON_BOX (bbox) not GTK_BOX (bbox) --- mate-dictionary/src/gdict-applet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mate-dictionary/src') diff --git a/mate-dictionary/src/gdict-applet.c b/mate-dictionary/src/gdict-applet.c index d00232ba..b635456a 100644 --- a/mate-dictionary/src/gdict-applet.c +++ b/mate-dictionary/src/gdict-applet.c @@ -365,7 +365,7 @@ gdict_applet_build_window (GdictApplet *applet) if (GDK_IS_WAYLAND_DISPLAY (display)) { gtk_box_pack_start (GTK_BOX (bbox), priv->entry, TRUE, TRUE, 0); - gtk_button_box_set_child_non_homogeneous(GTK_BOX (bbox), priv->entry, TRUE); + gtk_button_box_set_child_non_homogeneous(GTK_BUTTON_BOX (bbox), priv->entry, TRUE); } #endif gtk_box_pack_end (GTK_BOX (vbox), bbox, FALSE, FALSE, 0); -- cgit v1.2.1