diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-03-08 05:52:55 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-08 05:52:55 +0000 |
commit | c8830f2504dc0066eef4ba9098d418c317a40427 (patch) | |
tree | 3a6ad07061409f968a2c50e872340161c9ce72b5 /gtk/gtktextbuffer.h | |
parent | 3c8b5b490c618ca1316a6bc72df33a3d032a0f40 (diff) | |
download | gtk+-c8830f2504dc0066eef4ba9098d418c317a40427.tar.gz |
Use G_GNUC_NULL_TERMINATED where appropriate. (#165682, Marc Meissner)
2005-03-08 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkwidget.h:
* gtk/gtktreeview.h:
* gtk/gtktreeviewcolumn.h:
* gtk/gtktextbuffer.h:
* gtk/gtkobject.h:
* gtk/gtkfilechooserdialog.h:
* gtk/gtkdialog.h:
* gtk/gtkcontainer.h:
* gtk/gtkcelllayout.h:
* gtk/gtkaboutdialog.h: Use G_GNUC_NULL_TERMINATED where
appropriate. (#165682, Marc Meissner)
Diffstat (limited to 'gtk/gtktextbuffer.h')
-rw-r--r-- | gtk/gtktextbuffer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktextbuffer.h b/gtk/gtktextbuffer.h index 6d9d3b8774..a944b85944 100644 --- a/gtk/gtktextbuffer.h +++ b/gtk/gtktextbuffer.h @@ -186,14 +186,14 @@ void gtk_text_buffer_insert_with_tags (GtkTextBuffer *buffer, const gchar *text, gint len, GtkTextTag *first_tag, - ...); + ...) G_GNUC_NULL_TERMINATED; void gtk_text_buffer_insert_with_tags_by_name (GtkTextBuffer *buffer, GtkTextIter *iter, const gchar *text, gint len, const gchar *first_tag_name, - ...); + ...) G_GNUC_NULL_TERMINATED; /* Delete from the buffer */ void gtk_text_buffer_delete (GtkTextBuffer *buffer, @@ -292,7 +292,7 @@ void gtk_text_buffer_remove_all_tags (GtkTextBuffer *buffer, GtkTextTag *gtk_text_buffer_create_tag (GtkTextBuffer *buffer, const gchar *tag_name, const gchar *first_property_name, - ...); + ...) G_GNUC_NULL_TERMINATED; /* Obtain iterators pointed at various places, then you can move the * iterator around using the GtkTextIter operators |