aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-store.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-store.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-store.c')
-rw-r--r--camel/camel-store.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/camel-store.c b/camel/camel-store.c
index d3f693ad93..5723534138 100644
--- a/camel/camel-store.c
+++ b/camel/camel-store.c
@@ -23,7 +23,7 @@
#include "camel-store.h"
-static GtkObjectClass *camel_store_parent_class=NULL;
+static GtkObjectClass *parent_class=NULL;
/* Returns the class for a CamelStore */
#define CS_CLASS(so) CAMEL_STORE_CLASS (GTK_OBJECT(so)->klass)
@@ -37,7 +37,7 @@ static CamelFolder *camel_store_get_default_folder(CamelStore *store);
static void
camel_store_class_init (CamelStoreClass *camel_store_class)
{
- camel_store_parent_class = gtk_type_class (camel_service_get_type ());
+ parent_class = gtk_type_class (camel_service_get_type ());
/* virtual method definition */
camel_store_class->set_separator = camel_store_set_separator;
@@ -72,7 +72,7 @@ camel_store_get_type (void)
(GtkClassInitFunc) NULL,
};
- camel_store_type = gtk_type_unique (gtk_object_get_type (), &camel_store_info);
+ camel_store_type = gtk_type_unique (CAMEL_SERVICE_TYPE, &camel_store_info);
}
return camel_store_type;