From c8830f2504dc0066eef4ba9098d418c317a40427 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 8 Mar 2005 05:52:55 +0000 Subject: Use G_GNUC_NULL_TERMINATED where appropriate. (#165682, Marc Meissner) 2005-03-08 Matthias Clasen * 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) --- gtk/gtkcontainer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gtk/gtkcontainer.h') diff --git a/gtk/gtkcontainer.h b/gtk/gtkcontainer.h index 035cf3260b..afb8b12fdc 100644 --- a/gtk/gtkcontainer.h +++ b/gtk/gtkcontainer.h @@ -174,15 +174,15 @@ GParamSpec** gtk_container_class_list_child_properties (GObjectClass *cclass, void gtk_container_add_with_properties (GtkContainer *container, GtkWidget *widget, const gchar *first_prop_name, - ...); + ...) G_GNUC_NULL_TERMINATED; void gtk_container_child_set (GtkContainer *container, GtkWidget *child, const gchar *first_prop_name, - ...); + ...) G_GNUC_NULL_TERMINATED; void gtk_container_child_get (GtkContainer *container, GtkWidget *child, const gchar *first_prop_name, - ...); + ...) G_GNUC_NULL_TERMINATED; void gtk_container_child_set_valist (GtkContainer *container, GtkWidget *child, const gchar *first_property_name, -- cgit v1.2.1