diff options
Diffstat (limited to 'camel/camel-stream-fs.h')
-rw-r--r-- | camel/camel-stream-fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-stream-fs.h b/camel/camel-stream-fs.h index 3570e8a9f9..9f295cdb4a 100644 --- a/camel/camel-stream-fs.h +++ b/camel/camel-stream-fs.h @@ -50,7 +50,7 @@ typedef enum typedef struct { CamelStream parent_object; - GString *name; + gchar *name; int fd; } CamelStreamFs; @@ -70,7 +70,7 @@ GtkType camel_stream_fs_get_type (void); /* public methods */ -CamelStream *camel_stream_fs_new_with_name (GString *name, CamelStreamFsMode mode); +CamelStream *camel_stream_fs_new_with_name (gchar *name, CamelStreamFsMode mode); CamelStream *camel_stream_fs_new_with_fd (int fd); #ifdef __cplusplus |