summaryrefslogtreecommitdiff
path: root/gtk/gtkdialog.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-03-08 05:52:55 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-03-08 05:52:55 +0000
commitc8830f2504dc0066eef4ba9098d418c317a40427 (patch)
tree3a6ad07061409f968a2c50e872340161c9ce72b5 /gtk/gtkdialog.h
parent3c8b5b490c618ca1316a6bc72df33a3d032a0f40 (diff)
downloadgtk+-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/gtkdialog.h')
-rw-r--r--gtk/gtkdialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkdialog.h b/gtk/gtkdialog.h
index f42371ebc2..27ffa201d9 100644
--- a/gtk/gtkdialog.h
+++ b/gtk/gtkdialog.h
@@ -130,7 +130,7 @@ GtkWidget* gtk_dialog_new_with_buttons (const gchar *title,
GtkWindow *parent,
GtkDialogFlags flags,
const gchar *first_button_text,
- ...);
+ ...) G_GNUC_NULL_TERMINATED;
void gtk_dialog_add_action_widget (GtkDialog *dialog,
GtkWidget *child,
@@ -140,7 +140,7 @@ GtkWidget* gtk_dialog_add_button (GtkDialog *dialog,
gint response_id);
void gtk_dialog_add_buttons (GtkDialog *dialog,
const gchar *first_button_text,
- ...);
+ ...) G_GNUC_NULL_TERMINATED;
void gtk_dialog_set_response_sensitive (GtkDialog *dialog,
gint response_id,