diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-11-29 23:22:13 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-11-29 23:22:13 -0500 |
commit | 0b39631464bf2300d25bb9e112089c556dc08f42 (patch) | |
tree | 9791da489f51954c39fa1150b2735fc08cb073eb /gtk/gtktextsegment.h | |
parent | 3d4743ee62673415d3872d215fa472e883f5158f (diff) | |
download | gtk+-0b39631464bf2300d25bb9e112089c556dc08f42.tar.gz |
textview: Replace pixbufs by textures
This affects a few apis, such as gtk_text_iter_get_pixbuf,
gtk_text_buffer_insert_pixbuf and GtkTextBuffer::insert-pixbuf,
which have all been replaced by texture equivalents.
Update all callers.
Diffstat (limited to 'gtk/gtktextsegment.h')
-rw-r--r-- | gtk/gtktextsegment.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktextsegment.h b/gtk/gtktextsegment.h index 4ea125f7c9..039d96e348 100644 --- a/gtk/gtktextsegment.h +++ b/gtk/gtktextsegment.h @@ -144,7 +144,7 @@ struct _GtkTextLineSegment { * hold as many characters as needed.*/ GtkTextToggleBody toggle; /* Information about tag toggle. */ GtkTextMarkBody mark; /* Information about mark. */ - GtkTextPixbuf pixbuf; /* Child pixbuf */ + GtkTextTexture texture; /* Child texture */ GtkTextChildBody child; /* Child widget */ } body; }; |