aboutsummaryrefslogtreecommitdiffstats
path: root/shell/importer/GNOME_Evolution_Importer.idl
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-04-03 00:34:02 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-04-03 00:34:02 +0800
commit460542ead17a5cadc2597cd37a071ef756a7dbb1 (patch)
treefc17ed9c1a02f6772fbbb760ec4775952068a56e /shell/importer/GNOME_Evolution_Importer.idl
parent0a0e1f2f03c47e3a3b1fa3e5e39924cfc803be8b (diff)
downloadgsoc2013-evolution-460542ead17a5cadc2597cd37a071ef756a7dbb1.tar
gsoc2013-evolution-460542ead17a5cadc2597cd37a071ef756a7dbb1.tar.gz
gsoc2013-evolution-460542ead17a5cadc2597cd37a071ef756a7dbb1.tar.bz2
gsoc2013-evolution-460542ead17a5cadc2597cd37a071ef756a7dbb1.tar.lz
gsoc2013-evolution-460542ead17a5cadc2597cd37a071ef756a7dbb1.tar.xz
gsoc2013-evolution-460542ead17a5cadc2597cd37a071ef756a7dbb1.tar.zst
gsoc2013-evolution-460542ead17a5cadc2597cd37a071ef756a7dbb1.zip
added "foldertype" argument to GNOME::Evolution::Importer.
2003-04-02 Rodrigo Moya <rodrigo@ximian.com> * importer/GNOME_Evolution_Importer.idl: * importer/evolution-importer.[ch]: added "foldertype" argument to GNOME::Evolution::Importer. * importer/evolution-importer-client.[ch] (evolution_importer_client_load_file): added "folder_type" argument and use it in the call to GNOME_Evolution_Importer_loadFile. * e-shell-importer.c (start_import): added "folder_type" argument and use it in the call to evolution_importer_client_load_file. (folder_selected): pass in the "folder_type" argument to start_import, svn path=/trunk/; revision=20643
Diffstat (limited to 'shell/importer/GNOME_Evolution_Importer.idl')
-rw-r--r--shell/importer/GNOME_Evolution_Importer.idl4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/importer/GNOME_Evolution_Importer.idl b/shell/importer/GNOME_Evolution_Importer.idl
index 18ea7a65bb..775ba47377 100644
--- a/shell/importer/GNOME_Evolution_Importer.idl
+++ b/shell/importer/GNOME_Evolution_Importer.idl
@@ -72,6 +72,7 @@ module Evolution {
* loadFile:
* @filename: The filename of the file.
* @folderpath: The full pathname to the folder.
+ * @foldertpe: The type of the folder to import to.
*
* Loads the file and prepares an Importer object that can
* process files of this type.
@@ -79,7 +80,8 @@ module Evolution {
* Returns: An Importer object.
*/
boolean loadFile (in string filename,
- in string folderpath);
+ in string folderpath,
+ in string foldertype);
};
interface IntelligentImporter : Bonobo::Unknown {