diff options
author | lukefromdc <[email protected]> | 2023-10-18 02:46:45 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-10-18 12:18:43 +0200 |
commit | f1d486c32b3221cb8f03dec67b31098528138095 (patch) | |
tree | 268fb071b9d00471ad024d01afc747d727420f1f /mate-dictionary | |
parent | 63a29bff1e506497bdebd8c4a1e61956cbadda87 (diff) | |
download | mate-utils-f1d486c32b3221cb8f03dec67b31098528138095.tar.bz2 mate-utils-f1d486c32b3221cb8f03dec67b31098528138095.tar.xz |
dictionary applet: fix in-process build warning
*For a GtkButtonBox we must specify it as GTK_BUTTON_BOX (bbox) not GTK_BOX (bbox)
Diffstat (limited to 'mate-dictionary')
-rw-r--r-- | mate-dictionary/src/gdict-applet.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |