gtk: Stop using deprecated pango api

This commit is contained in:
Matthias Clasen 2019-01-31 14:07:08 -05:00
parent c23e07f60f
commit a3f1e02b9b
3 changed files with 5 additions and 4 deletions

View File

@ -6388,7 +6388,7 @@ gtk_entry_create_layout (GtkEntry *entry,
PangoDirection pango_dir;
if (gtk_entry_get_display_mode (entry) == DISPLAY_NORMAL)
pango_dir = pango_find_base_dir (display_text, n_bytes);
pango_dir = _gtk_pango_find_base_dir (display_text, n_bytes);
else
pango_dir = PANGO_DIRECTION_NEUTRAL;

View File

@ -67,6 +67,7 @@
#include "gtkdebug.h"
#include "gtktextmarkprivate.h"
#include "gtktextsegment.h"
#include "gtkpango.h"
/*
* Types
@ -598,8 +599,7 @@ gtk_text_btree_resolve_bidi (GtkTextIter *start,
{
PangoDirection pango_dir;
pango_dir = pango_find_base_dir (seg->body.chars,
seg->byte_count);
pango_dir = _gtk_pango_find_base_dir (seg->body.chars, seg->byte_count);
if (pango_dir != PANGO_DIRECTION_NEUTRAL)
{

View File

@ -58,6 +58,7 @@
#include "gtkpixelcacheprivate.h"
#include "gtkmagnifierprivate.h"
#include "gtkemojichooser.h"
#include "gtkpango.h"
#include "a11y/gtktextviewaccessibleprivate.h"
@ -6460,7 +6461,7 @@ iter_line_is_rtl (const GtkTextIter *iter)
gtk_text_iter_set_line_offset (&start, 0);
gtk_text_iter_forward_line (&end);
text = gtk_text_iter_get_visible_text (&start, &end);
direction = pango_find_base_dir (text, -1);
direction = _gtk_pango_find_base_dir (text, -1);
g_free (text);