From bffdf85285b26fca4783e5f9208a7e3b6d943674 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Fri, 1 Jul 2005 09:49:32 +0000 Subject: Added the source type field in _ECalConfigTargetSource Set the source type 2005-07-01 Praveen Kumar * gui/e-cal-config.h : Added the source type field in _ECalConfigTargetSource * gui/dialogs/calendar-setup.c (calendar_setup_edit_calendar) : Set the source type as calendar (calendar_setup_edit_task_list) : Set the source type as tasks. svn path=/trunk/; revision=29609 --- calendar/gui/dialogs/calendar-setup.c | 2 ++ calendar/gui/e-cal-config.h | 2 ++ 2 files changed, 4 insertions(+) (limited to 'calendar/gui') diff --git a/calendar/gui/dialogs/calendar-setup.c b/calendar/gui/dialogs/calendar-setup.c index 0cfc32a217..e54a3a3838 100644 --- a/calendar/gui/dialogs/calendar-setup.c +++ b/calendar/gui/dialogs/calendar-setup.c @@ -442,6 +442,7 @@ calendar_setup_edit_calendar (struct _GtkWindow *parent, ESource *source, ESourc e_config_add_page_check ((EConfig *) ec, NULL, eccp_check_complete, sdialog); target = e_cal_config_target_new_source (ec, sdialog->source); + target->source_type = E_CAL_SOURCE_TYPE_EVENT; e_config_set_target ((EConfig *) ec, (EConfigTarget *) target); if (source) @@ -510,6 +511,7 @@ calendar_setup_edit_task_list (struct _GtkWindow *parent, ESource *source) e_config_add_page_check ((EConfig *) ec, NULL, eccp_check_complete, sdialog); target = e_cal_config_target_new_source (ec, sdialog->source); + target->source_type = E_CAL_SOURCE_TYPE_TODO; e_config_set_target ((EConfig *) ec, (EConfigTarget *) target); sdialog->window = e_config_create_window ((EConfig *)ec, NULL, _("Task List Properties")); diff --git a/calendar/gui/e-cal-config.h b/calendar/gui/e-cal-config.h index 93086dd8ce..fa3a26e75f 100644 --- a/calendar/gui/e-cal-config.h +++ b/calendar/gui/e-cal-config.h @@ -24,6 +24,7 @@ #include +#include #include "e-util/e-config.h" #ifdef __cplusplus @@ -52,6 +53,7 @@ struct _ECalConfigTargetSource { EConfigTarget target; struct _ESource *source; + ECalSourceType *source_type; }; typedef struct _EConfigItem ECalConfigItem; -- cgit v1.2.3