summaryrefslogtreecommitdiff
path: root/devel/anjuta/patches/patch-libanjuta_anjuta-utils.h
blob: 8725c65e30f0119211e79874e5cfc025c7d5297b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$NetBSD: patch-libanjuta_anjuta-utils.h,v 1.1 2013/10/06 20:01:27 joerg Exp $

--- libanjuta/anjuta-utils.h.orig	2013-08-09 00:30:17.000000000 +0000
+++ libanjuta/anjuta-utils.h
@@ -49,16 +49,16 @@ GtkWidget*  anjuta_util_dialog_add_butto
  													 gint response_id);
 
 void		anjuta_util_dialog_error				(GtkWindow *parent,
-						                             const gchar * mesg, ...);
+						                             const gchar * mesg, ...) G_GNUC_PRINTF(2,3);
 void		anjuta_util_dialog_warning				(GtkWindow *parent,
-						                             const gchar * mesg, ...);
+						                             const gchar * mesg, ...) G_GNUC_PRINTF(2,3);
 void		anjuta_util_dialog_info					(GtkWindow *parent,
-							                         const gchar * mesg, ...);
+							                         const gchar * mesg, ...) G_GNUC_PRINTF(2,3);
 void		anjuta_util_dialog_error_system			(GtkWindow* parent, gint errnum,
-													const gchar * mesg, ... );
+													const gchar * mesg, ... ) G_GNUC_PRINTF(3,4);
 gboolean	anjuta_util_dialog_boolean_question		(GtkWindow *parent,
 													gboolean default_to_yes,
-													const gchar * mesg, ...);
+													const gchar * mesg, ...) G_GNUC_PRINTF(3,4);
 gboolean	anjuta_util_dialog_input				(GtkWindow *parent,
 					                                 const gchar *label,
 													 const gchar *default_value,