diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-28 04:28:57 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-28 04:28:57 +0800 |
commit | 14f54991f36d5d3556af1dde53ddb7a8aceafa3a (patch) | |
tree | 32e055e0ff41dc1220fc9e8fabd24547281e316b /calendar/modules/e-cal-shell-view-private.c | |
parent | 85b2913a380c69f14ae0254ad23b10fabfb33667 (diff) | |
download | gsoc2013-evolution-14f54991f36d5d3556af1dde53ddb7a8aceafa3a.tar gsoc2013-evolution-14f54991f36d5d3556af1dde53ddb7a8aceafa3a.tar.gz gsoc2013-evolution-14f54991f36d5d3556af1dde53ddb7a8aceafa3a.tar.bz2 gsoc2013-evolution-14f54991f36d5d3556af1dde53ddb7a8aceafa3a.tar.lz gsoc2013-evolution-14f54991f36d5d3556af1dde53ddb7a8aceafa3a.tar.xz gsoc2013-evolution-14f54991f36d5d3556af1dde53ddb7a8aceafa3a.tar.zst gsoc2013-evolution-14f54991f36d5d3556af1dde53ddb7a8aceafa3a.zip |
Disable parts of my previous calendar work, such that all modules now load!
svn path=/branches/kill-bonobo/; revision=36690
Diffstat (limited to 'calendar/modules/e-cal-shell-view-private.c')
-rw-r--r-- | calendar/modules/e-cal-shell-view-private.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/calendar/modules/e-cal-shell-view-private.c b/calendar/modules/e-cal-shell-view-private.c index 65be70ae93..d5b15a370f 100644 --- a/calendar/modules/e-cal-shell-view-private.c +++ b/calendar/modules/e-cal-shell-view-private.c @@ -27,6 +27,7 @@ static void cal_shell_view_update_timezone (ECalShellView *cal_shell_view) { +#if 0 ECalShellContent *cal_shell_content; ECalShellSidebar *cal_shell_sidebar; GnomeCalendarViewType view_type; @@ -44,6 +45,7 @@ cal_shell_view_update_timezone (ECalShellView *cal_shell_view) timezone = calendar_config_get_icaltimezone (); e_calendar_view_get_icaltimezone (calendar_view, timezone); +#endif } static void @@ -265,13 +267,15 @@ e_cal_shell_view_private_constructed (ECalShellView *cal_shell_view) /* Listen for configuration changes. */ +#if 0 notification = calendar_config_add_notification_timezone ( cal_shell_view_timezone_changed_cb, cal_shell_view); priv->notifications = g_list_prepend ( priv->notifications, GUINT_TO_POINTER (notification)); cal_shell_view_update_timezone (cal_shell_view); +#endif - e_shell_view_update_actions (shell_view); + e_cal_shell_view_actions_init (shell_view); e_cal_shell_view_update_sidebar (cal_shell_view); } @@ -383,6 +387,7 @@ e_cal_shell_view_set_status_message (ECalShellView *cal_shell_view, void e_cal_shell_view_update_sidebar (ECalShellView *cal_shell_view) { +#if 0 /* KILL-BONOBO */ EShellView *shell_view; EShellSidebar *shell_sidebar; GnomeCalendar *calendar; @@ -503,5 +508,5 @@ e_cal_shell_view_update_sidebar (ECalShellView *cal_shell_view) } e_shell_sidebar_set_secondary_text (shell_sidebar, buffer); +#endif } - |