aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-04-20 06:51:33 +0800
committerDan Winship <danw@src.gnome.org>2000-04-20 06:51:33 +0800
commiteb31ef95a590b18c2f08a8392a4983c1b9fb0958 (patch)
tree80b97eb0028ded8b917e2d6aed2eed46dbb768ff
parent52d16fdd6399ddb106d42a94d8b517cd5b6621d2 (diff)
downloadgsoc2013-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
-rw-r--r--camel/ChangeLog4
-rw-r--r--camel/camel-simple-data-wrapper-stream.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index f31fac1b2c..e373337fe4 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,9 @@
2000-04-19 Dan Winship <danw@helixcode.com>
+ * camel-simple-data-wrapper-stream.c
+ (camel_simple_data_wrapper_stream_get_type): This is a subtype of
+ CamelSeekableStream, not CamelStream.
+
* camel-seekable-substream.c: clean up a lot.
(eos): When testing for end-of-stream, reset the parent position
before testing if it is at end-of-stream, since either (a) it may
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;