aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNotZed <notzed@zedzone.helixcode.com>2000-02-11 08:51:48 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-02-11 08:51:48 +0800
commite59a188db0ae7785eb774120ed0f04d80b1e1504 (patch)
tree3e57b1a733acf752fec28b480c3c77f14e93ca59
parent784c1184a8d73c23f6462997da00e354297fdf78 (diff)
downloadgsoc2013-evolution-e59a188db0ae7785eb774120ed0f04d80b1e1504.tar
gsoc2013-evolution-e59a188db0ae7785eb774120ed0f04d80b1e1504.tar.gz
gsoc2013-evolution-e59a188db0ae7785eb774120ed0f04d80b1e1504.tar.bz2
gsoc2013-evolution-e59a188db0ae7785eb774120ed0f04d80b1e1504.tar.lz
gsoc2013-evolution-e59a188db0ae7785eb774120ed0f04d80b1e1504.tar.xz
gsoc2013-evolution-e59a188db0ae7785eb774120ed0f04d80b1e1504.tar.zst
gsoc2013-evolution-e59a188db0ae7785eb774120ed0f04d80b1e1504.zip
Bad Ettore, no biscuit!
2000-02-10 NotZed <notzed@zedzone.helixcode.com> * camel/camel-simple-data-wrapper-stream.h: The superclass is actually a seekable stream, not just a stream. svn path=/trunk/; revision=1726
-rw-r--r--ChangeLog5
-rw-r--r--camel/camel-simple-data-wrapper-stream.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2097be8976..c98d25b3d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-02-10 NotZed <notzed@zedzone.helixcode.com>
+
+ * camel/camel-simple-data-wrapper-stream.h: The superclass is
+ actually a seekable stream, not just a stream.
+
2000-02-10 bertrand <Bertrand.Guiheneuf@aful.org>
* tests/Makefile.am (THREAD_RELATED_TESTS): don't
diff --git a/camel/camel-simple-data-wrapper-stream.h b/camel/camel-simple-data-wrapper-stream.h
index 9c756a568d..e756d3e591 100644
--- a/camel/camel-simple-data-wrapper-stream.h
+++ b/camel/camel-simple-data-wrapper-stream.h
@@ -62,7 +62,7 @@ struct _CamelSimpleDataWrapperStream {
};
struct _CamelSimpleDataWrapperStreamClass {
- CamelStreamClass parent_class;
+ CamelSeekableStreamClass parent_class;
};