diff options
author | Tim Janik <timj@imendio.com> | 2006-03-24 14:03:45 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2006-03-24 14:03:45 +0000 |
commit | adebf25717e32cecd24529293f14a24a1b0c2392 (patch) | |
tree | 8204c861c6d6478ba52ecbaa278bc5d2a3b346ba /gtk/gtktextbtree.h | |
parent | 112f3289d697f371f6d20c5980e6153aad87c7a1 (diff) | |
download | gtk+-adebf25717e32cecd24529293f14a24a1b0c2392.tar.gz |
back out G_GNUC_WARN_UNUSED_RESULT on iterator functions which turned out
Fri Mar 24 14:53:20 2006 Tim Janik <timj@imendio.com>
* gtk/gtktreemodel.h:
* gtk/gtktextbtree.h: back out G_GNUC_WARN_UNUSED_RESULT on iterator
functions which turned out to cause too much trouble.
Diffstat (limited to 'gtk/gtktextbtree.h')
-rw-r--r-- | gtk/gtktextbtree.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtktextbtree.h b/gtk/gtktextbtree.h index d757aecbd1..2b2d17cba1 100644 --- a/gtk/gtktextbtree.h +++ b/gtk/gtktextbtree.h @@ -155,10 +155,10 @@ void _gtk_text_btree_get_iter_at_line_byte (GtkTextBTree *tree, gint byte_index); gboolean _gtk_text_btree_get_iter_from_string (GtkTextBTree *tree, GtkTextIter *iter, - const gchar *string) G_GNUC_WARN_UNUSED_RESULT; + const gchar *string); gboolean _gtk_text_btree_get_iter_at_mark_name (GtkTextBTree *tree, GtkTextIter *iter, - const gchar *mark_name) G_GNUC_WARN_UNUSED_RESULT; + const gchar *mark_name); void _gtk_text_btree_get_iter_at_mark (GtkTextBTree *tree, GtkTextIter *iter, GtkTextMark *mark); @@ -170,10 +170,10 @@ void _gtk_text_btree_get_iter_at_line (GtkTextBTree *tree, gint byte_offset); gboolean _gtk_text_btree_get_iter_at_first_toggle (GtkTextBTree *tree, GtkTextIter *iter, - GtkTextTag *tag) G_GNUC_WARN_UNUSED_RESULT; + GtkTextTag *tag); gboolean _gtk_text_btree_get_iter_at_last_toggle (GtkTextBTree *tree, GtkTextIter *iter, - GtkTextTag *tag) G_GNUC_WARN_UNUSED_RESULT; + GtkTextTag *tag); void _gtk_text_btree_get_iter_at_child_anchor (GtkTextBTree *tree, GtkTextIter *iter, |