talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 72af590ae944e16136d1dcbb2ea3e4f7c7fd44aa
parent 332a84cc65e594093a0509791bc7a595edd850d5
Author: Andrej Kacian <andrej@kacian.sk>
Date:   Sat, 14 Jun 2014 17:32:39 +0200

Get rid of deprecated use of GtkComboBox text functions in favour of GtkComboBoxText.

Diffstat:
Msrc/plugins/rssyl/rssyl_feed_props.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/plugins/rssyl/rssyl_feed_props.c b/src/plugins/rssyl/rssyl_feed_props.c @@ -286,12 +286,12 @@ void rssyl_gtk_prop(RFolderItem *ritem) 1, 0); /* Silent update - combobox */ - feedprop->silent_update = gtk_combo_box_new_text(); - gtk_combo_box_append_text(GTK_COMBO_BOX(feedprop->silent_update), + feedprop->silent_update = gtk_combo_box_text_new(); + gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(feedprop->silent_update), _("Always mark as new")); - gtk_combo_box_append_text(GTK_COMBO_BOX(feedprop->silent_update), + gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(feedprop->silent_update), _("If only its text changed")); - gtk_combo_box_append_text(GTK_COMBO_BOX(feedprop->silent_update), + gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(feedprop->silent_update), _("Never mark as new")); gtk_combo_box_set_active(GTK_COMBO_BOX(feedprop->silent_update), ritem->silent_update);