diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-11-02 12:13:17 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-11-02 12:13:17 +0800 |
commit | 18cee24a50b93f4b6b7c053a54a1ec90bf22b69e (patch) | |
tree | eba6dd675312f97d9aa5e91b3fa751062773085b /mail/mail-threads.h | |
parent | f665251bcf9820840d406d096358034178e1ab40 (diff) | |
download | gsoc2013-evolution-18cee24a50b93f4b6b7c053a54a1ec90bf22b69e.tar gsoc2013-evolution-18cee24a50b93f4b6b7c053a54a1ec90bf22b69e.tar.gz gsoc2013-evolution-18cee24a50b93f4b6b7c053a54a1ec90bf22b69e.tar.bz2 gsoc2013-evolution-18cee24a50b93f4b6b7c053a54a1ec90bf22b69e.tar.lz gsoc2013-evolution-18cee24a50b93f4b6b7c053a54a1ec90bf22b69e.tar.xz gsoc2013-evolution-18cee24a50b93f4b6b7c053a54a1ec90bf22b69e.tar.zst gsoc2013-evolution-18cee24a50b93f4b6b7c053a54a1ec90bf22b69e.zip |
fmt argument should be const.
2000-11-01 Jeffrey Stedfast <fejj@helixcode.com>
* mail-threads.c (mail_op_set_message): fmt argument should be
const.
svn path=/trunk/; revision=6343
Diffstat (limited to 'mail/mail-threads.h')
-rw-r--r-- | mail/mail-threads.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-threads.h b/mail/mail-threads.h index e27f07d789..d3872276f3 100644 --- a/mail/mail-threads.h +++ b/mail/mail-threads.h @@ -58,7 +58,7 @@ void mail_op_hide_progressbar (void); void mail_op_show_progressbar (void); #endif -void mail_op_set_message (gchar * fmt, ...) G_GNUC_PRINTF (1, 2); +void mail_op_set_message (const gchar *fmt, ...) G_GNUC_PRINTF (1, 2); void mail_op_error (gchar * fmt, ...) G_GNUC_PRINTF (1, 2); gboolean mail_op_get_password (gchar * prompt, gboolean secret, gchar ** dest); |