summaryrefslogtreecommitdiff
path: root/gtk/gtktextiter.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2001-01-01 20:26:10 +0000
committerHavoc Pennington <hp@src.gnome.org>2001-01-01 20:26:10 +0000
commitaac55c46644408fab68936100dd85e6cea62703f (patch)
tree32b5e33531292d3c41559a5b541a92a459b51fc8 /gtk/gtktextiter.c
parent66f87948e233899c8bb67979df74a9e728b7635c (diff)
downloadgtk+-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.c10
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);