app/widgets/gimpmessagebox.h added G_GNUC_PRINTF attributes.

2005-03-24  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpmessagebox.h
	* libgimpconfig/gimpconfigwriter.h: added G_GNUC_PRINTF attributes.
This commit is contained in:
Sven Neumann 2005-03-23 23:36:17 +00:00 committed by Sven Neumann
parent e9fb0580da
commit e6b63117cf
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-03-24 Sven Neumann <sven@gimp.org>
* app/widgets/gimpmessagebox.h
* libgimpconfig/gimpconfigwriter.h: added G_GNUC_PRINTF attributes.
2005-03-23 Bill Skaggs <weskaggs@primate.ucdavis.edu>
* plug-ins/common/screenshot.c: add ability to define region

View File

@ -56,13 +56,13 @@ GType gimp_message_box_get_type (void) G_GNUC_CONST;
GtkWidget * gimp_message_box_new (const gchar *stock_id);
void gimp_message_box_set_primary_text (GimpMessageBox *box,
const gchar *format,
...);
...) G_GNUC_PRINTF (2, 3);
void gimp_message_box_set_text (GimpMessageBox *box,
const gchar *format,
...);
...) G_GNUC_PRINTF (2, 3);
void gimp_message_box_set_markup (GimpMessageBox *box,
const gchar *format,
...);
...) G_GNUC_PRINTF (2, 3);
gint gimp_message_box_repeat (GimpMessageBox *box);

View File

@ -41,7 +41,7 @@ void gimp_config_writer_print (GimpConfigWriter *writer,
gint len);
void gimp_config_writer_printf (GimpConfigWriter *writer,
const gchar *format,
...);
...) G_GNUC_PRINTF (2, 3);
void gimp_config_writer_identifier (GimpConfigWriter *writer,
const gchar *identifier);
void gimp_config_writer_string (GimpConfigWriter *writer,