diff options
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 9ba4862769..21a1ed31da 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -304,7 +304,7 @@ build_message (EMsgComposer *composer) } static char * -get_signature (char *sigfile) +get_signature (const char *sigfile) { char *rawsig; static char *htmlsig = NULL; @@ -354,7 +354,7 @@ get_signature (char *sigfile) } static void -set_editor_text (BonoboWidget *editor, char *sig_file, const char *text) +set_editor_text (BonoboWidget *editor, const char *sig_file, const char *text) { Bonobo_PersistStream persist; BonoboStream *stream; @@ -1229,7 +1229,7 @@ e_msg_composer_new (void) * Return value: A pointer to the newly created widget **/ GtkWidget * -e_msg_composer_new_with_sig_file (char *sig_file) +e_msg_composer_new_with_sig_file (const char *sig_file) { GtkWidget *new; |