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/libgdict/gdict-defbox.h | |
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/libgdict/gdict-defbox.h')
-rw-r--r-- | mate-dictionary/libgdict/gdict-defbox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-dictionary/libgdict/gdict-defbox.h b/mate-dictionary/libgdict/gdict-defbox.h index afe9241f..b9f773e1 100644 --- a/mate-dictionary/libgdict/gdict-defbox.h +++ b/mate-dictionary/libgdict/gdict-defbox.h @@ -39,14 +39,14 @@ typedef struct _GdictDefboxPrivate GdictDefboxPrivate; struct _GdictDefbox { /*< private >*/ - GtkVBox parent_instance; + GtkBox parent_instance; GdictDefboxPrivate *priv; }; struct _GdictDefboxClass { - GtkVBoxClass parent_class; + GtkBoxClass parent_class; /* these are all RUN_ACTION signals for key bindings */ void (*show_find) (GdictDefbox *defbox); |