aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-alert-dialog.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-15 22:38:59 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-15 22:38:59 +0800
commit58d0d111af5580051b4d9a5cbaef4d7b96fdcfa8 (patch)
treeb6d3a47f051d5d81fcc2c7219ff60a5a77711f77 /e-util/e-alert-dialog.h
parentea52ab83fe121796a12a090ce81ba114d2c368ed (diff)
downloadgsoc2013-evolution-58d0d111af5580051b4d9a5cbaef4d7b96fdcfa8.tar
gsoc2013-evolution-58d0d111af5580051b4d9a5cbaef4d7b96fdcfa8.tar.gz
gsoc2013-evolution-58d0d111af5580051b4d9a5cbaef4d7b96fdcfa8.tar.bz2
gsoc2013-evolution-58d0d111af5580051b4d9a5cbaef4d7b96fdcfa8.tar.lz
gsoc2013-evolution-58d0d111af5580051b4d9a5cbaef4d7b96fdcfa8.tar.xz
gsoc2013-evolution-58d0d111af5580051b4d9a5cbaef4d7b96fdcfa8.tar.zst
gsoc2013-evolution-58d0d111af5580051b4d9a5cbaef4d7b96fdcfa8.zip
Prevent future bugs like #612792.
Add G_GNUC_NULL_TERMINATED to EAlert functions with variable-length parameter lists and drop the unnecessary "arg0" parameter so the function attribute works correctly.
Diffstat (limited to 'e-util/e-alert-dialog.h')
-rw-r--r--e-util/e-alert-dialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-alert-dialog.h b/e-util/e-alert-dialog.h
index df87c90f99..2be298e8dc 100644
--- a/e-util/e-alert-dialog.h
+++ b/e-util/e-alert-dialog.h
@@ -69,11 +69,11 @@ struct _EAlertDialogClass
GType e_alert_dialog_get_type (void);
GtkWidget* e_alert_dialog_new (GtkWindow* parent, EAlert *alert);
-GtkWidget* e_alert_dialog_new_for_args (GtkWindow* parent, const gchar *tag, const gchar *arg0, ...);
+GtkWidget* e_alert_dialog_new_for_args (GtkWindow* parent, const gchar *tag, ...) G_GNUC_NULL_TERMINATED;
/* Convenience functions for displaying the alert in a GtkDialog */
gint e_alert_run_dialog(GtkWindow *parent, EAlert *alert);
-gint e_alert_run_dialog_for_args (GtkWindow *parent, const gchar *tag, const gchar *arg0, ...);
+gint e_alert_run_dialog_for_args (GtkWindow *parent, const gchar *tag, ...) G_GNUC_NULL_TERMINATED;
guint e_alert_dialog_count_buttons (EAlertDialog *dialog);
EAlert *e_alert_dialog_get_alert (EAlertDialog *dialog);