diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-21 02:37:36 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-21 02:37:36 +0800 |
commit | 6043cbbc55d612e29b9d0fa5f10459f06896adcf (patch) | |
tree | 00dbd5eb1c3feca28c60b212e86fdb137e612cc3 /camel/camel-stream-fs.h | |
parent | 95697142edb4d62c7f82cb915857597f095a0155 (diff) | |
download | gsoc2013-evolution-6043cbbc55d612e29b9d0fa5f10459f06896adcf.tar gsoc2013-evolution-6043cbbc55d612e29b9d0fa5f10459f06896adcf.tar.gz gsoc2013-evolution-6043cbbc55d612e29b9d0fa5f10459f06896adcf.tar.bz2 gsoc2013-evolution-6043cbbc55d612e29b9d0fa5f10459f06896adcf.tar.lz gsoc2013-evolution-6043cbbc55d612e29b9d0fa5f10459f06896adcf.tar.xz gsoc2013-evolution-6043cbbc55d612e29b9d0fa5f10459f06896adcf.tar.zst gsoc2013-evolution-6043cbbc55d612e29b9d0fa5f10459f06896adcf.zip |
name parameter is const. This fixes a bug in destroy ()
1999-08-20 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-stream-fs.c (camel_stream_fs_new_with_name):
name parameter is const. This fixes a bug in destroy ()
svn path=/trunk/; revision=1135
Diffstat (limited to 'camel/camel-stream-fs.h')
-rw-r--r-- | camel/camel-stream-fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-stream-fs.h b/camel/camel-stream-fs.h index 9f295cdb4a..86d955cc1c 100644 --- a/camel/camel-stream-fs.h +++ b/camel/camel-stream-fs.h @@ -70,7 +70,7 @@ GtkType camel_stream_fs_get_type (void); /* public methods */ -CamelStream *camel_stream_fs_new_with_name (gchar *name, CamelStreamFsMode mode); +CamelStream *camel_stream_fs_new_with_name (const gchar *name, CamelStreamFsMode mode); CamelStream *camel_stream_fs_new_with_fd (int fd); #ifdef __cplusplus |