aboutsummaryrefslogtreecommitdiffstats
path: root/camel/tests
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-08-22 02:17:21 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-08-22 02:17:21 +0800
commit577c14751f5305ab925af567082b0f71f3616d18 (patch)
treeb1a9d81d84c817343d30750b087ac4998395edb9 /camel/tests
parentf871ef2a856abbfd9002ac28ba39a6e26dc393b8 (diff)
downloadgsoc2013-evolution-577c14751f5305ab925af567082b0f71f3616d18.tar
gsoc2013-evolution-577c14751f5305ab925af567082b0f71f3616d18.tar.gz
gsoc2013-evolution-577c14751f5305ab925af567082b0f71f3616d18.tar.bz2
gsoc2013-evolution-577c14751f5305ab925af567082b0f71f3616d18.tar.lz
gsoc2013-evolution-577c14751f5305ab925af567082b0f71f3616d18.tar.xz
gsoc2013-evolution-577c14751f5305ab925af567082b0f71f3616d18.tar.zst
gsoc2013-evolution-577c14751f5305ab925af567082b0f71f3616d18.zip
Don't register the noop timeout here anymore, we're gonna handle all this
2002-08-21 Jeffrey Stedfast <fejj@ximian.com> * camel-session.c (get_service): Don't register the noop timeout here anymore, we're gonna handle all this in the mailer now. (camel_session_register_timeout): Removed. (camel_session_remove_timeout): Removed. svn path=/trunk/; revision=17830
Diffstat (limited to 'camel/tests')
-rw-r--r--camel/tests/lib/session.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/camel/tests/lib/session.c b/camel/tests/lib/session.c
index a1f8df3ea0..bf23fbe377 100644
--- a/camel/tests/lib/session.c
+++ b/camel/tests/lib/session.c
@@ -4,28 +4,11 @@
#include "session.h"
-static guint
-register_timeout (CamelSession *session, guint32 interval, CamelTimeoutCallback callback, gpointer user_data)
-{
- return 1;
-}
-
-static gboolean
-unregister_timeout (CamelSession *session, guint handle)
-{
- return TRUE;
-}
-
-
static void
class_init (CamelTestSessionClass *camel_test_session_class)
{
CamelSessionClass *camel_session_class =
CAMEL_SESSION_CLASS (camel_test_session_class);
-
- /* virtual method override */
- camel_session_class->register_timeout = register_timeout;
- camel_session_class->remove_timeout = unregister_timeout;
}
CamelType