diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-20 06:51:33 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-20 06:51:33 +0800 |
commit | eb31ef95a590b18c2f08a8392a4983c1b9fb0958 (patch) | |
tree | 80b97eb0028ded8b917e2d6aed2eed46dbb768ff /camel/camel-simple-data-wrapper-stream.c | |
parent | 52d16fdd6399ddb106d42a94d8b517cd5b6621d2 (diff) | |
download | gsoc2013-evolution-eb31ef95a590b18c2f08a8392a4983c1b9fb0958.tar gsoc2013-evolution-eb31ef95a590b18c2f08a8392a4983c1b9fb0958.tar.gz gsoc2013-evolution-eb31ef95a590b18c2f08a8392a4983c1b9fb0958.tar.bz2 gsoc2013-evolution-eb31ef95a590b18c2f08a8392a4983c1b9fb0958.tar.lz gsoc2013-evolution-eb31ef95a590b18c2f08a8392a4983c1b9fb0958.tar.xz gsoc2013-evolution-eb31ef95a590b18c2f08a8392a4983c1b9fb0958.tar.zst gsoc2013-evolution-eb31ef95a590b18c2f08a8392a4983c1b9fb0958.zip |
This is a subtype of CamelSeekableStream, not CamelStream.
* camel-simple-data-wrapper-stream.c
(camel_simple_data_wrapper_stream_get_type): This is a subtype of
CamelSeekableStream, not CamelStream.
svn path=/trunk/; revision=2520
Diffstat (limited to 'camel/camel-simple-data-wrapper-stream.c')
-rw-r--r-- | camel/camel-simple-data-wrapper-stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-simple-data-wrapper-stream.c b/camel/camel-simple-data-wrapper-stream.c index 0b1fd3f396..5ee5363108 100644 --- a/camel/camel-simple-data-wrapper-stream.c +++ b/camel/camel-simple-data-wrapper-stream.c @@ -259,7 +259,7 @@ camel_simple_data_wrapper_stream_get_type (void) (GtkClassInitFunc) NULL, }; - type = gtk_type_unique (camel_stream_get_type (), &info); + type = gtk_type_unique (camel_seekable_stream_get_type (), &info); } return type; |