diff options
author | Havoc Pennington <hp@redhat.com> | 2001-02-19 23:27:27 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-02-19 23:27:27 +0000 |
commit | bc31a1bcca308f345343aa82f0b54072fccbc693 (patch) | |
tree | 591e11b74eae3ea337250ac03a3e6880de9a8557 /gtk/gtktextbtree.h | |
parent | 027c3154997eed2f371025399b764321b44a19b3 (diff) | |
download | gdk-pixbuf-bc31a1bcca308f345343aa82f0b54072fccbc693.tar.gz |
add insert_child_anchor signal, bug #50245
2001-02-19 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbuffer.h (struct _GtkTextBufferClass): add
insert_child_anchor signal, bug #50245
* gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): change
from create_child_anchor, so the anchor is passed in
* gtk/gtktextchild.c (gtk_text_child_anchor_new): new function
(_gtk_widget_segment_new): have the child anchor object passed in,
instead of creating it.
* gtk/gtktextbuffer.c (gtk_text_buffer_modified): rename
to gtk_text_buffer_get_modified
Diffstat (limited to 'gtk/gtktextbtree.h')
-rw-r--r-- | gtk/gtktextbtree.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtktextbtree.h b/gtk/gtktextbtree.h index 17fd0a540..723746d94 100644 --- a/gtk/gtktextbtree.h +++ b/gtk/gtktextbtree.h @@ -34,7 +34,8 @@ void _gtk_text_btree_insert (GtkTextIter *iter, void _gtk_text_btree_insert_pixbuf (GtkTextIter *iter, GdkPixbuf *pixbuf); -GtkTextChildAnchor* _gtk_text_btree_create_child_anchor (GtkTextIter *iter); +void _gtk_text_btree_insert_child_anchor (GtkTextIter *iter, + GtkTextChildAnchor *anchor); void _gtk_text_btree_unregister_child_anchor (GtkTextChildAnchor *anchor); |