aboutsummaryrefslogtreecommitdiffstats
path: root/main_statusbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'main_statusbar.h')
-rw-r--r--main_statusbar.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/main_statusbar.h b/main_statusbar.h
index 92ecd27c44..a15aa4e158 100644
--- a/main_statusbar.h
+++ b/main_statusbar.h
@@ -34,7 +34,8 @@ void status_expert_update(void);
*
* @param msg_format The format string for the message
*/
-void statusbar_push_field_msg(const gchar *msg_format, ...);
+void statusbar_push_field_msg(const gchar *msg_format, ...)
+ G_GNUC_PRINTF(1, 2);
/** Pop a message referring to the currently-selected field off the statusbar.
*/
@@ -45,7 +46,8 @@ void statusbar_pop_field_msg(void);
*
* @param msg_format The format string for the message
*/
-void statusbar_push_filter_msg(const gchar *msg_format, ...);
+void statusbar_push_filter_msg(const gchar *msg_format, ...)
+ G_GNUC_PRINTF(1, 2);
/** Pop a message referring to the current filter off the statusbar.
*/
@@ -56,6 +58,7 @@ void statusbar_pop_filter_msg(void);
*
* @param msg_format The format string for the message
*/
-void statusbar_push_temporary_msg(const gchar *msg_format, ...);
+void statusbar_push_temporary_msg(const gchar *msg_format, ...)
+ G_GNUC_PRINTF(1, 2);
#endif /* __MAIN_STATUSBAR_H__ */