diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 2000-02-17 02:04:40 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-02-17 02:04:40 +0800 |
commit | 7f04720b1efe9baea8770813e85cb17cd600d077 (patch) | |
tree | a4749e3ecc075439dddf3928584a88b8d11d3e76 /camel/camel-thread-proxy.c | |
parent | d2239da3e7758ed99263b6623ab258561e10994d (diff) | |
download | gsoc2013-evolution-7f04720b1efe9baea8770813e85cb17cd600d077.tar gsoc2013-evolution-7f04720b1efe9baea8770813e85cb17cd600d077.tar.gz gsoc2013-evolution-7f04720b1efe9baea8770813e85cb17cd600d077.tar.bz2 gsoc2013-evolution-7f04720b1efe9baea8770813e85cb17cd600d077.tar.lz gsoc2013-evolution-7f04720b1efe9baea8770813e85cb17cd600d077.tar.xz gsoc2013-evolution-7f04720b1efe9baea8770813e85cb17cd600d077.tar.zst gsoc2013-evolution-7f04720b1efe9baea8770813e85cb17cd600d077.zip |
don't seek the begining of the substream. (_eos): fix eos condition
2000-02-16 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-seekable-substream.c (_set_bounds): don't
seek the begining of the substream.
(_eos): fix eos condition testing.
(_finalize): unref parent stream
(_init_with_seekable_stream_and_bounds): ref parent stream
* camel/gstring-util.c (g_string_equal_for_hash):
(g_string_equal_for_glist): return type is int.
* camel/camel.h:
* camel/camel.c (camel_init): use (void)
instead of ().
A lot of other small changes to make the set_input_stream
scheme work. It actually works.
svn path=/trunk/; revision=1798
Diffstat (limited to 'camel/camel-thread-proxy.c')
-rw-r--r-- | camel/camel-thread-proxy.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/camel/camel-thread-proxy.c b/camel/camel-thread-proxy.c index 70079d3baf..53fda08bab 100644 --- a/camel/camel-thread-proxy.c +++ b/camel/camel-thread-proxy.c @@ -72,7 +72,7 @@ _init_notify_system (CamelThreadProxy *proxy); * Return value: The newly created proxy object **/ CamelThreadProxy * -camel_thread_proxy_new () +camel_thread_proxy_new (void) { CamelThreadProxy *proxy; @@ -137,7 +137,6 @@ camel_thread_proxy_free (CamelThreadProxy *proxy) void _op_run_free_and_notify (CamelOp *op) { - gboolean error; CamelThreadProxy *th_proxy; CAMEL_LOG_FULL_DEBUG ("Entering CamelThreadProxy::_op_run_free_and_notify\n"); @@ -163,7 +162,6 @@ _run_next_op_in_thread (CamelThreadProxy *proxy) { CamelOp *op; CamelOpQueue *server_op_queue; - CamelThreadProxy *th_proxy; pthread_t thread; CAMEL_LOG_FULL_DEBUG ("Entering CamelThreadProxy::_run_next_op_in_thread\n"); @@ -260,7 +258,6 @@ _run_next_cb (CamelThreadProxy *proxy) { CamelOp *op; CamelOpQueue *client_op_queue; - CamelThreadProxy *th_proxy; CAMEL_LOG_FULL_DEBUG ("Entering CamelThreadProxy::_run_next_cb\n"); client_op_queue = proxy->client_op_queue; @@ -476,7 +473,6 @@ camel_thread_proxy_add_signals (CamelThreadProxy *proxy, GtkObject *real_object, char *signal_to_proxy[]) { - GtkType camel_folder_type; guint i; CAMEL_LOG_FULL_DEBUG ("Entering CamelThreadProxy::camel_thread_proxy_init_signals\n"); |