diff options
author | rbuj <[email protected]> | 2020-05-25 21:07:37 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-06-13 16:07:21 +0200 |
commit | 36875203bdfc21bbe79a50ab58aae913b0280c91 (patch) | |
tree | a258807f4f87f8f51662bb38cf3ae28b53262d1b /mate-dictionary/src | |
parent | feff11d4cd8d257aa940cfb48dd91b8d1e1f3929 (diff) | |
download | mate-utils-36875203bdfc21bbe79a50ab58aae913b0280c91.tar.bz2 mate-utils-36875203bdfc21bbe79a50ab58aae913b0280c91.tar.xz |
mate-dictionary-source.ui: Fix deprecations
Diffstat (limited to 'mate-dictionary/src')
-rw-r--r-- | mate-dictionary/src/gdict-source-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-dictionary/src/gdict-source-dialog.c b/mate-dictionary/src/gdict-source-dialog.c index 444febdd..622ee9e4 100644 --- a/mate-dictionary/src/gdict-source-dialog.c +++ b/mate-dictionary/src/gdict-source-dialog.c @@ -612,11 +612,11 @@ gdict_source_dialog_constructor (GType type, GTK_RESPONSE_HELP); dialog->db_chooser = gdict_database_chooser_new (); - gtk_box_pack_start (GTK_BOX (GET_WIDGET ("db-vbox")), dialog->db_chooser, TRUE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (GET_WIDGET ("db-box")), dialog->db_chooser, TRUE, TRUE, 0); gtk_widget_show (dialog->db_chooser); dialog->strat_chooser = gdict_strategy_chooser_new (); - gtk_box_pack_start (GTK_BOX (GET_WIDGET ("strat-vbox")), dialog->strat_chooser, TRUE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (GET_WIDGET ("strat-box")), dialog->strat_chooser, TRUE, TRUE, 0); gtk_widget_show (dialog->strat_chooser); /* the UI changes depending on the action that the source dialog |