aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component
diff options
context:
space:
mode:
authorDevashish Sharma <dsharma@src.gnome.org>2006-01-16 15:15:52 +0800
committerDevashish Sharma <dsharma@src.gnome.org>2006-01-16 15:15:52 +0800
commit91dd88e567784f9ee794ae5789eff8d2f4d89718 (patch)
tree8fe310dd236e7ae9121e7e6f3cd699dd22a5d69a /addressbook/gui/component
parent3f92713d77274237fb42929660d67cb0b83ec521 (diff)
downloadgsoc2013-evolution-91dd88e567784f9ee794ae5789eff8d2f4d89718.tar
gsoc2013-evolution-91dd88e567784f9ee794ae5789eff8d2f4d89718.tar.gz
gsoc2013-evolution-91dd88e567784f9ee794ae5789eff8d2f4d89718.tar.bz2
gsoc2013-evolution-91dd88e567784f9ee794ae5789eff8d2f4d89718.tar.lz
gsoc2013-evolution-91dd88e567784f9ee794ae5789eff8d2f4d89718.tar.xz
gsoc2013-evolution-91dd88e567784f9ee794ae5789eff8d2f4d89718.tar.zst
gsoc2013-evolution-91dd88e567784f9ee794ae5789eff8d2f4d89718.zip
Added support for CSV and TAB file import.
svn path=/trunk/; revision=31197
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r--addressbook/gui/component/addressbook-component.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c
index 72eedac8aa..9fd0180449 100644
--- a/addressbook/gui/component/addressbook-component.c
+++ b/addressbook/gui/component/addressbook-component.c
@@ -484,6 +484,9 @@ addressbook_component_init (AddressbookComponent *component)
klass = g_type_class_ref(e_import_get_type());
e_import_class_add_importer(klass, evolution_ldif_importer_peek(), NULL, NULL);
e_import_class_add_importer(klass, evolution_vcard_importer_peek(), NULL, NULL);
+ e_import_class_add_importer(klass, evolution_csv_outlook_importer_peek(), NULL, NULL);
+ e_import_class_add_importer(klass, evolution_csv_mozilla_importer_peek(), NULL, NULL);
+ e_import_class_add_importer(klass, evolution_csv_evolution_importer_peek(), NULL, NULL);
}
}