diff options
author | Havoc Pennington <hp@redhat.com> | 2001-01-01 20:26:10 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-01-01 20:26:10 +0000 |
commit | aac55c46644408fab68936100dd85e6cea62703f (patch) | |
tree | 32b5e33531292d3c41559a5b541a92a459b51fc8 /gtk/gtktextiter.c | |
parent | 66f87948e233899c8bb67979df74a9e728b7635c (diff) | |
download | gtk+-aac55c46644408fab68936100dd85e6cea62703f.tar.gz |
uscore-prepend all the stuff in here.
2001-01-01 Havoc Pennington <hp@redhat.com>
* gtk/gtktexttagprivate.h: uscore-prepend all the stuff in here.
* gtk/gtk-boxed.defs (GtkTextAttributes): Add boxed type for
GtkTextAttributes
* gtk/gtktexttag.c: Fix up GtkTextAttributes copying to close bug
#40246
(gtk_text_attributes_copy_values): rename from
gtk_text_attributes_copy
(gtk_text_attributes_copy): a more standard GTK copy function,
which returns a new object
Diffstat (limited to 'gtk/gtktextiter.c')
-rw-r--r-- | gtk/gtktextiter.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtktextiter.c b/gtk/gtktextiter.c index 755fc033b2..eb6e2c3233 100644 --- a/gtk/gtktextiter.c +++ b/gtk/gtktextiter.c @@ -1207,7 +1207,7 @@ gtk_text_iter_get_tags (const GtkTextIter *iter) } /* Sort tags in ascending order of priority */ - gtk_text_tag_array_sort (tags, tag_count); + _gtk_text_tag_array_sort (tags, tag_count); retval = NULL; i = 0; @@ -1544,11 +1544,11 @@ gtk_text_iter_get_attributes (const GtkTextIter *iter, } /* Sort tags in ascending order of priority */ - gtk_text_tag_array_sort (tags, tag_count); + _gtk_text_tag_array_sort (tags, tag_count); - gtk_text_attributes_fill_from_tags (values, - tags, - tag_count); + _gtk_text_attributes_fill_from_tags (values, + tags, + tag_count); g_free (tags); |