Iain's fix did not help, fixing myself. closes #1914

svn path=/trunk/; revision=9112
This commit is contained in:
Gediminas Paulauskas
2001-04-03 01:00:56 +00:00
parent 13c1c69d5f
commit dacf8177a9
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-04-03 Gediminas Paulauskas <menesis@delfi.lt>
* importer/evolution-importer-client.c (evolution_importer_client_load_file):
fix Iain's fix which did nothing. closes #1914.
2001-03-31 Christopher James Lahey <clahey@ximian.com>
* evolution-storage-set-view.c: Include <gal/util/e-util.h> here.

View File

@ -174,7 +174,6 @@ evolution_importer_client_load_file (EvolutionImporterClient *client,
const char *folderpath)
{
GNOME_Evolution_Importer corba_importer;
CORBA_char *folderpath_dup;
gboolean result;
CORBA_Environment ev;
@ -184,9 +183,10 @@ evolution_importer_client_load_file (EvolutionImporterClient *client,
CORBA_exception_init (&ev);
corba_importer = bonobo_object_corba_objref (BONOBO_OBJECT (client));
folderpath_dup = CORBA_string_dup (folderpath ? folderpath : "");
result = GNOME_Evolution_Importer_loadFile (corba_importer,
filename, folderpath, &ev);
filename,
folderpath ? folderpath : "",
&ev);
CORBA_exception_free (&ev);
return result;