aboutsummaryrefslogtreecommitdiffstats
path: root/shell/importer/evolution-importer-client.c
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2003-03-20 18:07:51 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-03-20 18:07:51 +0800
commit4ac5734af0ee578f5e769bf4bd5a420d379d2155 (patch)
tree3b448d4ed50083284a8cab8d5d23f5d9f3148768 /shell/importer/evolution-importer-client.c
parent9e5f92c8e4f778a3293a7cfe208995a2ac8ab069 (diff)
downloadgsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.gz
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.bz2
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.lz
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.xz
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.tar.zst
gsoc2013-evolution-4ac5734af0ee578f5e769bf4bd5a420d379d2155.zip
*** empty log message ***
svn path=/trunk/; revision=20378
Diffstat (limited to 'shell/importer/evolution-importer-client.c')
-rw-r--r--shell/importer/evolution-importer-client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/importer/evolution-importer-client.c b/shell/importer/evolution-importer-client.c
index 99e096a833..b8be15bc08 100644
--- a/shell/importer/evolution-importer-client.c
+++ b/shell/importer/evolution-importer-client.c
@@ -151,7 +151,7 @@ evolution_importer_client_support_format (EvolutionImporterClient *client,
* evolution_importer_client_load_file:
* @client: The EvolutionImporterClient.
* @filename: The file to load.
- * @folderpath: The full path to the folder, or NULL for Inbox.
+ * @physical_uri: The physical URI of the folder to import data into.
*
* Loads and initialises the importer.
*
@@ -160,7 +160,7 @@ evolution_importer_client_support_format (EvolutionImporterClient *client,
gboolean
evolution_importer_client_load_file (EvolutionImporterClient *client,
const char *filename,
- const char *folderpath)
+ const char *physical_uri)
{
GNOME_Evolution_Importer corba_importer;
gboolean result;
@@ -174,7 +174,7 @@ evolution_importer_client_load_file (EvolutionImporterClient *client,
corba_importer = client->objref;
result = GNOME_Evolution_Importer_loadFile (corba_importer,
filename,
- folderpath ? folderpath : "",
+ physical_uri ? physical_uri : "",
&ev);
if (ev._major != CORBA_NO_EXCEPTION) {
g_warning ("Oh there *WAS* an exception.\nIt was %s",