aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-stream-data-wrapper.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>1999-11-17 23:35:43 +0800
committerEttore Perazzoli <ettore@src.gnome.org>1999-11-17 23:35:43 +0800
commit9663037f6c0daaf03d74c88afb002a6bb33f222b (patch)
treea6edccc1e5963511d0734e3171b97d853bf14b5c /camel/camel-stream-data-wrapper.c
parentca7044930f42a698fd88f914c2512a20e2eeaae9 (diff)
downloadgsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.gz
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.bz2
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.lz
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.xz
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.tar.zst
gsoc2013-evolution-9663037f6c0daaf03d74c88afb002a6bb33f222b.zip
More work:
- Fixed some Camel API naming issues. - Moved the message composer stuff to the `composer' directory. svn path=/trunk/; revision=1395
Diffstat (limited to 'camel/camel-stream-data-wrapper.c')
-rw-r--r--camel/camel-stream-data-wrapper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-stream-data-wrapper.c b/camel/camel-stream-data-wrapper.c
index 564571cf09..38ac8d92c1 100644
--- a/camel/camel-stream-data-wrapper.c
+++ b/camel/camel-stream-data-wrapper.c
@@ -177,9 +177,9 @@ camel_stream_data_wrapper_construct (CamelStreamDataWrapper *wrapper,
CamelStream *stream)
{
g_return_if_fail (wrapper != NULL);
- g_return_if_fail (IS_CAMEL_STREAM_DATA_WRAPPER (wrapper));
+ g_return_if_fail (CAMEL_IS_STREAM_DATA_WRAPPER (wrapper));
g_return_if_fail (stream != NULL);
- g_return_if_fail (IS_CAMEL_STREAM (stream));
+ g_return_if_fail (CAMEL_IS_STREAM (stream));
wrapper->stream = stream;
gtk_signal_connect (GTK_OBJECT (stream), "destroy",