From c0800eff5739c3891375d5c4d1db62720fd877cd Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 1 May 2018 20:31:29 +0100 Subject: dictionary: Replace deprecated GtkFontButton accessors Use the equivalent GtkFontChooser ones. origin commit: https://gitlab.gnome.org/GNOME/gnome-dictionary/commit/d575146 --- mate-dictionary/src/gdict-pref-dialog.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mate-dictionary/src/gdict-pref-dialog.c b/mate-dictionary/src/gdict-pref-dialog.c index ddf80f0e..5b8a6de7 100644 --- a/mate-dictionary/src/gdict-pref-dialog.c +++ b/mate-dictionary/src/gdict-pref-dialog.c @@ -459,13 +459,13 @@ static void font_button_font_set_cb (GtkWidget *font_button, GdictPrefDialog *dialog) { - const gchar *font; + const char *font; - font = gtk_font_button_get_font_name (GTK_FONT_BUTTON (font_button)); + font = gtk_font_chooser_get_font (GTK_FONT_CHOOSER (font_button)); if (!font || font[0] == '\0') return; - if (dialog->print_font && (strcmp (dialog->print_font, font) == 0)) + if (g_strcmp0 (dialog->print_font, font) == 0) return; g_free (dialog->print_font); @@ -657,7 +657,7 @@ gdict_pref_dialog_init (GdictPrefDialog *dialog) font = g_settings_get_string (dialog->settings, GDICT_SETTINGS_PRINT_FONT_KEY); dialog->font_button = GTK_WIDGET (gtk_builder_get_object (dialog->builder, "print_font_button")); - gtk_font_button_set_font_name (GTK_FONT_BUTTON (dialog->font_button), font); + gtk_font_chooser_set_font (GTK_FONT_CHOOSER (dialog->font_button), font); gtk_widget_set_tooltip_text (dialog->font_button, _("Set the font used for printing the definitions")); g_signal_connect (dialog->font_button, "font-set", -- cgit v1.2.1