aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-service.c
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@inria.fr>1999-04-22 06:45:49 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-04-22 06:45:49 +0800
commited6323e9781d6a38bdb6151a77f79b1326fbb6ba (patch)
tree97ff422dea7fad35372848ec51c840ebb433ba9f /camel/camel-service.c
parentb23f36ba14259a3f4e3d3811158a7a59260dc495 (diff)
downloadgsoc2013-evolution-ed6323e9781d6a38bdb6151a77f79b1326fbb6ba.tar
gsoc2013-evolution-ed6323e9781d6a38bdb6151a77f79b1326fbb6ba.tar.gz
gsoc2013-evolution-ed6323e9781d6a38bdb6151a77f79b1326fbb6ba.tar.bz2
gsoc2013-evolution-ed6323e9781d6a38bdb6151a77f79b1326fbb6ba.tar.lz
gsoc2013-evolution-ed6323e9781d6a38bdb6151a77f79b1326fbb6ba.tar.xz
gsoc2013-evolution-ed6323e9781d6a38bdb6151a77f79b1326fbb6ba.tar.zst
gsoc2013-evolution-ed6323e9781d6a38bdb6151a77f79b1326fbb6ba.zip
more test implementation.
1999-04-22 bertrand <Bertrand.Guiheneuf@inria.fr> * camel/providers/MH/camel-mh-store.c: more test implementation. * camel/camel-store.c (camel_store_get_type): typo fix A lot of small adds and corrections. svn path=/trunk/; revision=867
Diffstat (limited to 'camel/camel-service.c')
-rw-r--r--camel/camel-service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/camel-service.c b/camel/camel-service.c
index dd909cbb1f..a07f2fa729 100644
--- a/camel/camel-service.c
+++ b/camel/camel-service.c
@@ -23,7 +23,7 @@
#include "camel-service.h"
-static GtkObjectClass *camel_service_parent_class=NULL;
+static GtkObjectClass *parent_class=NULL;
/* Returns the class for a CamelService */
#define CSERV_CLASS(so) CAMEL_SERVICE_CLASS (GTK_OBJECT(so)->klass)
@@ -36,7 +36,7 @@ static void camel_service_set_connected(CamelService *service, gboolean state);
static void
camel_service_class_init (CamelServiceClass *camel_service_class)
{
- camel_service_parent_class = gtk_type_class (gtk_object_get_type ());
+ parent_class = gtk_type_class (gtk_object_get_type ());
/* virtual method definition */
camel_service_class->connect = camel_service_connect;
@@ -92,7 +92,7 @@ camel_service_get_type (void)
*
* @service: object to connect
**/
-static void
+void
camel_service_connect(CamelService *service)
{