aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/evolution-module-calendar.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-07-06 01:26:43 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-07-06 04:40:50 +0800
commitdf1dc37704daf3b1f20d1632b1cef1ea0a2181ad (patch)
tree18f00ac12457a5e1f9a5cf2bb2b9db482a150d96 /modules/calendar/evolution-module-calendar.c
parent7bb795b299758e6a81536b81c19693f353106105 (diff)
downloadgsoc2013-evolution-df1dc37704daf3b1f20d1632b1cef1ea0a2181ad.tar
gsoc2013-evolution-df1dc37704daf3b1f20d1632b1cef1ea0a2181ad.tar.gz
gsoc2013-evolution-df1dc37704daf3b1f20d1632b1cef1ea0a2181ad.tar.bz2
gsoc2013-evolution-df1dc37704daf3b1f20d1632b1cef1ea0a2181ad.tar.lz
gsoc2013-evolution-df1dc37704daf3b1f20d1632b1cef1ea0a2181ad.tar.xz
gsoc2013-evolution-df1dc37704daf3b1f20d1632b1cef1ea0a2181ad.tar.zst
gsoc2013-evolution-df1dc37704daf3b1f20d1632b1cef1ea0a2181ad.zip
EShellView can load the GalViewCollection itself now.
EShellView no longer needs help from subclasses other than getting the needed GalView subclasses registered. A nice side-effect of this is EShellView subclasses can now use the G_DEFINE_DYNAMIC_TYPE macro.
Diffstat (limited to 'modules/calendar/evolution-module-calendar.c')
-rw-r--r--modules/calendar/evolution-module-calendar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/calendar/evolution-module-calendar.c b/modules/calendar/evolution-module-calendar.c
index 86cfa1f729..fabe410271 100644
--- a/modules/calendar/evolution-module-calendar.c
+++ b/modules/calendar/evolution-module-calendar.c
@@ -59,20 +59,20 @@ e_module_load (GTypeModule *type_module)
e_cal_config_hook_register_type (type_module);
e_cal_event_hook_register_type (type_module);
+ e_cal_shell_view_type_register (type_module);
e_cal_shell_backend_type_register (type_module);
e_cal_shell_content_type_register (type_module);
e_cal_shell_sidebar_type_register (type_module);
- e_cal_shell_view_register_type (type_module);
+ e_memo_shell_view_type_register (type_module);
e_memo_shell_backend_type_register (type_module);
e_memo_shell_content_type_register (type_module);
e_memo_shell_sidebar_type_register (type_module);
- e_memo_shell_view_register_type (type_module);
+ e_task_shell_view_type_register (type_module);
e_task_shell_backend_type_register (type_module);
e_task_shell_content_type_register (type_module);
e_task_shell_sidebar_type_register (type_module);
- e_task_shell_view_register_type (type_module);
e_calendar_preferences_type_register (type_module);
}