diff options
author | JP Rosevear <jpr@ximian.com> | 2003-11-29 00:48:50 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-11-29 00:48:50 +0800 |
commit | 6e64409d396b79b85c51159643436af69d2998cc (patch) | |
tree | 8a019925f9bf518da7d86e3fe76fbe63539774dd /calendar/gui/e-meeting-store.c | |
parent | 2c25bb555493800640aea747ca293828b2886c76 (diff) | |
download | gsoc2013-evolution-6e64409d396b79b85c51159643436af69d2998cc.tar.gz gsoc2013-evolution-6e64409d396b79b85c51159643436af69d2998cc.tar.zst gsoc2013-evolution-6e64409d396b79b85c51159643436af69d2998cc.zip |
allocate the type information correctly
03-11-28 JP Rosevear <jpr@ximian.com>
* gui/e-meeting-store.c (e_meeting_store_get_type): allocate the
type information correctly
svn path=/trunk/; revision=23501
Diffstat (limited to 'calendar/gui/e-meeting-store.c')
-rw-r--r-- | calendar/gui/e-meeting-store.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/e-meeting-store.c b/calendar/gui/e-meeting-store.c index 2bbaff4bec..01ac267fe1 100644 --- a/calendar/gui/e-meeting-store.c +++ b/calendar/gui/e-meeting-store.c @@ -633,13 +633,13 @@ e_meeting_store_get_type (void) if (!ems_type) { static const GTypeInfo ems_info = { - sizeof (GtkListStoreClass), + sizeof (EMeetingStoreClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) ems_class_init, NULL, /* class_finalize */ NULL, /* class_data */ - sizeof (GtkListStore), + sizeof (EMeetingStore), 0, (GInstanceInitFunc) ems_init }; @@ -648,7 +648,7 @@ e_meeting_store_get_type (void) NULL, NULL }; - ems_type = g_type_register_static (G_TYPE_OBJECT, + ems_type = g_type_register_static (GTK_TYPE_LIST_STORE, "EMeetingStore", &ems_info, 0); |