From 79f9fe7f770b95600d4997267e3ed2416523387e Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 16 Dec 2012 17:22:42 -0500 Subject: e-config: Remove unused functions. e_config_add_skip_check() e_config_class_remove_factory() e_config_create_window() e_config_page_get() e_config_page_next() e_config_page_prev() e_config_set_page_is_finish() Also remove E_CONFIG_ASSISTANT and all the assistant support therein. --- calendar/gui/e-cal-config.c | 5 ++--- calendar/gui/e-cal-config.h | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'calendar') diff --git a/calendar/gui/e-cal-config.c b/calendar/gui/e-cal-config.c index 0f65bd6b1d..74f6db6915 100644 --- a/calendar/gui/e-cal-config.c +++ b/calendar/gui/e-cal-config.c @@ -126,11 +126,10 @@ e_cal_config_init (ECalConfig *cfg) } ECalConfig * -e_cal_config_new (gint type, - const gchar *menuid) +e_cal_config_new (const gchar *menuid) { ECalConfig *ecp = g_object_new (e_cal_config_get_type (), NULL); - e_config_construct (&ecp->config, type, menuid); + e_config_construct (&ecp->config, menuid); return ecp; } diff --git a/calendar/gui/e-cal-config.h b/calendar/gui/e-cal-config.h index e6db09ad6e..62ccf7bd70 100644 --- a/calendar/gui/e-cal-config.h +++ b/calendar/gui/e-cal-config.h @@ -86,8 +86,7 @@ struct _ECalConfigTargetPrefs { typedef struct _EConfigItem ECalConfigItem; GType e_cal_config_get_type (void); -ECalConfig * e_cal_config_new (gint type, - const gchar *menuid); +ECalConfig * e_cal_config_new (const gchar *menuid); ECalConfigTargetSource * e_cal_config_target_new_source (ECalConfig *ecp, ESource *source); -- cgit