talons

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

commit 13a8e7744b16fee45aed79088421c39560d5282d
parent 66bafe683401cc2a51ca0d15615b1751fa4c9108
Author: paul <paul@claws-mail.org>
Date:   Mon, 23 Aug 2021 15:22:23 +0100

replace deprecated gtk_text_iter_begins_tag()

Diffstat:
Msrc/printing.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/printing.c b/src/printing.c @@ -1357,7 +1357,7 @@ static void printing_layout_set_text_attributes(PrintData *print_data, g_slist_free(tags); } - if (gtk_text_iter_begins_tag(&iter, NULL)) { + if (gtk_text_iter_starts_tag(&iter, NULL)) { tags = gtk_text_iter_get_toggled_tags(&iter, TRUE); /* Sometimes, an iter has several weights. Use only the first in this case */ gboolean weight_set_for_this_iter;