diff options
author | monsta <[email protected]> | 2016-01-22 15:10:28 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-01-22 15:10:28 +0300 |
commit | 3967123299f476612b6d546b0b31c9293b3d5f26 (patch) | |
tree | d7d0e771cdbd38702cfebf0aa37a7f28826a7b30 /mate-dictionary/src/gdict-applet.c | |
parent | 61fc4065c4cdcb49aeab3a38a9da95a043260f50 (diff) | |
download | mate-utils-3967123299f476612b6d546b0b31c9293b3d5f26.tar.bz2 mate-utils-3967123299f476612b6d546b0b31c9293b3d5f26.tar.xz |
[GTK+3] dictionary: (almost) fix deprecated usage of Gtk{H,V}Box
Diffstat (limited to 'mate-dictionary/src/gdict-applet.c')
-rw-r--r-- | mate-dictionary/src/gdict-applet.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/mate-dictionary/src/gdict-applet.c b/mate-dictionary/src/gdict-applet.c index 726ad85f..009e1502 100644 --- a/mate-dictionary/src/gdict-applet.c +++ b/mate-dictionary/src/gdict-applet.c @@ -333,8 +333,12 @@ gdict_applet_build_window (GdictApplet *applet) gtk_container_add (GTK_CONTAINER (window), frame); gtk_widget_show (frame); priv->frame = frame; - + +#if GTK_CHECK_VERSION (3, 0, 0) + vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); +#else vbox = gtk_vbox_new (FALSE, 12); +#endif gtk_container_set_border_width (GTK_CONTAINER (vbox), 6); gtk_container_add (GTK_CONTAINER (frame), vbox); gtk_widget_show (vbox); @@ -512,6 +516,9 @@ gdict_applet_draw (GdictApplet *applet) if (priv->box) gtk_widget_destroy (priv->box); +#if GTK_CHECK_VERSION (3, 0, 0) + box = gtk_box_new (priv->orient, 0); +#else switch (priv->orient) { case GTK_ORIENTATION_VERTICAL: @@ -524,6 +531,7 @@ gdict_applet_draw (GdictApplet *applet) g_assert_not_reached (); break; } +#endif gtk_container_add (GTK_CONTAINER (applet), box); gtk_widget_show (box); @@ -546,7 +554,11 @@ gdict_applet_draw (GdictApplet *applet) gtk_box_pack_start (GTK_BOX (box), priv->toggle, FALSE, FALSE, 0); gtk_widget_show (priv->toggle); +#if GTK_CHECK_VERSION (3, 0, 0) + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); +#else hbox = gtk_hbox_new (FALSE, 0); +#endif gtk_container_set_border_width (GTK_CONTAINER (hbox), 0); gtk_container_add (GTK_CONTAINER (priv->toggle), hbox); gtk_widget_show (hbox); |