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 /addressbook/gui/widgets | |
parent | 6faf671382518db3a81af23bd67a5f5b41ab3b2e (diff) | |
download | gsoc2013-evolution-79f9fe7f770b95600d4997267e3ed2416523387e.tar gsoc2013-evolution-79f9fe7f770b95600d4997267e3ed2416523387e.tar.gz gsoc2013-evolution-79f9fe7f770b95600d4997267e3ed2416523387e.tar.bz2 gsoc2013-evolution-79f9fe7f770b95600d4997267e3ed2416523387e.tar.lz gsoc2013-evolution-79f9fe7f770b95600d4997267e3ed2416523387e.tar.xz 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 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/eab-config.c | 5 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-config.h | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/addressbook/gui/widgets/eab-config.c b/addressbook/gui/widgets/eab-config.c index 0a1e7aba18..ad15f1cca9 100644 --- a/addressbook/gui/widgets/eab-config.c +++ b/addressbook/gui/widgets/eab-config.c @@ -124,11 +124,10 @@ eab_config_class_init (EABConfigClass *class) } EABConfig * -eab_config_new (gint type, - const gchar *menuid) +eab_config_new (const gchar *menuid) { EABConfig *ecp = g_object_new (eab_config_get_type (), NULL); - e_config_construct (&ecp->config, type, menuid); + e_config_construct (&ecp->config, menuid); return ecp; } diff --git a/addressbook/gui/widgets/eab-config.h b/addressbook/gui/widgets/eab-config.h index 83c08b4172..55612ec65a 100644 --- a/addressbook/gui/widgets/eab-config.h +++ b/addressbook/gui/widgets/eab-config.h @@ -72,7 +72,7 @@ struct _EABConfigTargetPrefs { typedef struct _EConfigItem EABConfigItem; GType eab_config_get_type (void); -EABConfig *eab_config_new (gint type, const gchar *menuid); +EABConfig *eab_config_new (const gchar *menuid); EABConfigTargetSource *eab_config_target_new_source (EABConfig *ecp, ESource *source); EABConfigTargetPrefs *eab_config_target_new_prefs (EABConfig *ecp, GSettings *settings); |