Add printf format check for dialogs_show_msgbox().

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1472 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2007-04-23 12:30:27 +00:00
parent 3341ce8e65
commit d813cbdbab

View File

@ -53,6 +53,6 @@ gboolean dialogs_show_question(const gchar *text, ...) G_GNUC_PRINTF (1, 2);
gboolean dialogs_show_question_full(const gchar *yes_btn, const gchar *no_btn,
const gchar *extra_text, const gchar *main_text, ...) G_GNUC_PRINTF (4, 5);
void dialogs_show_msgbox(gint type, const gchar *text, ...);
void dialogs_show_msgbox(gint type, const gchar *text, ...) G_GNUC_PRINTF (2, 3);
#endif