diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-12-17 06:22:42 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-12-17 07:07:54 +0800 |
commit | 79f9fe7f770b95600d4997267e3ed2416523387e (patch) | |
tree | bd16197074d5da716bee73e7f2de9ee9c0ad2220 /calendar | |
parent | 6faf671382518db3a81af23bd67a5f5b41ab3b2e (diff) | |
download | gsoc2013-evolution-79f9fe7f770b95600d4997267e3ed2416523387e.tar.gz gsoc2013-evolution-79f9fe7f770b95600d4997267e3ed2416523387e.tar.zst gsoc2013-evolution-79f9fe7f770b95600d4997267e3ed2416523387e.zip |
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.
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/e-cal-config.c | 5 | ||||
-rw-r--r-- | calendar/gui/e-cal-config.h | 3 |
2 files changed, 3 insertions, 5 deletions
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); |