From d7d55d68842fa62bc2740dc9d8ae53f435ea9c81 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Tue, 9 Oct 2012 12:45:27 -0400 Subject: ECalConfigCompEditor: Use G_DEFINE_DYNAMIC_TYPE. Follow the usual GObject conventions. (cherry picked from commit 5938ad7e8f0b3cf223b41bf942d9d1a9a0a42d2e) --- modules/calendar/e-cal-config-comp-editor.c | 60 +++++++++++++++++------------ 1 file changed, 36 insertions(+), 24 deletions(-) (limited to 'modules/calendar/e-cal-config-comp-editor.c') diff --git a/modules/calendar/e-cal-config-comp-editor.c b/modules/calendar/e-cal-config-comp-editor.c index c2d296cefc..98991b43b2 100644 --- a/modules/calendar/e-cal-config-comp-editor.c +++ b/modules/calendar/e-cal-config-comp-editor.c @@ -22,12 +22,21 @@ #include "e-cal-config-comp-editor.h" -#include - #include #include -static gpointer parent_class; +#define E_CAL_CONFIG_COMP_EDITOR_GET_PRIVATE(obj) \ + (G_TYPE_INSTANCE_GET_PRIVATE \ + ((obj), E_TYPE_CAL_CONFIG_COMP_EDITOR, ECalConfigCompEditorPrivate)) + +struct _ECalConfigCompEditorPrivate { + gint placeholder; +}; + +G_DEFINE_DYNAMIC_TYPE ( + ECalConfigCompEditor, + e_cal_config_comp_editor, + E_TYPE_EXTENSION) static void cal_config_comp_editor_constructed (GObject *object) @@ -74,39 +83,42 @@ cal_config_comp_editor_constructed (GObject *object) G_BINDING_SYNC_CREATE); /* Chain up to parent's constructed() method. */ - G_OBJECT_CLASS (parent_class)->constructed (object); + G_OBJECT_CLASS (e_cal_config_comp_editor_parent_class)-> + constructed (object); } static void -cal_config_comp_editor_class_init (EExtensionClass *class) +e_cal_config_comp_editor_class_init (ECalConfigCompEditorClass *class) { GObjectClass *object_class; + EExtensionClass *extension_class; - parent_class = g_type_class_peek_parent (class); + g_type_class_add_private (class, sizeof (ECalConfigCompEditorPrivate)); object_class = G_OBJECT_CLASS (class); object_class->constructed = cal_config_comp_editor_constructed; - class->extensible_type = TYPE_COMP_EDITOR; + extension_class = E_EXTENSION_CLASS (class); + extension_class->extensible_type = TYPE_COMP_EDITOR; +} + +static void +e_cal_config_comp_editor_class_finalize (ECalConfigCompEditorClass *class) +{ +} + +static void +e_cal_config_comp_editor_init (ECalConfigCompEditor *extension) +{ + extension->priv = E_CAL_CONFIG_COMP_EDITOR_GET_PRIVATE (extension); } void -e_cal_config_comp_editor_register_type (GTypeModule *type_module) +e_cal_config_comp_editor_type_register (GTypeModule *type_module) { - static const GTypeInfo type_info = { - sizeof (EExtensionClass), - (GBaseInitFunc) NULL, - (GBaseFinalizeFunc) NULL, - (GClassInitFunc) cal_config_comp_editor_class_init, - (GClassFinalizeFunc) NULL, - NULL, /* class_data */ - sizeof (EExtension), - 0, /* n_preallocs */ - (GInstanceInitFunc) NULL, - NULL /* value_table */ - }; - - g_type_module_register_type ( - type_module, E_TYPE_EXTENSION, - "ECalConfigCompEditor", &type_info, 0); + /* XXX G_DEFINE_DYNAMIC_TYPE declares a static type registration + * function, so we have to wrap it with a public function in + * order to register types from a separate compilation unit. */ + e_cal_config_comp_editor_register_type (type_module); } + -- cgit v1.2.3