diff options
author | Gediminas Paulauskas <menesis@src.gnome.org> | 2001-04-03 09:00:56 +0800 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2001-04-03 09:00:56 +0800 |
commit | dacf8177a931cfd4914a2eb0499dcb6aa0d2a9ea (patch) | |
tree | 913734a58d782b25f0361cd6ca167605dd8b5ba4 | |
parent | 13c1c69d5f6601d959a514306376b3c982fbb697 (diff) | |
download | gsoc2013-evolution-dacf8177a931cfd4914a2eb0499dcb6aa0d2a9ea.tar gsoc2013-evolution-dacf8177a931cfd4914a2eb0499dcb6aa0d2a9ea.tar.gz gsoc2013-evolution-dacf8177a931cfd4914a2eb0499dcb6aa0d2a9ea.tar.bz2 gsoc2013-evolution-dacf8177a931cfd4914a2eb0499dcb6aa0d2a9ea.tar.lz gsoc2013-evolution-dacf8177a931cfd4914a2eb0499dcb6aa0d2a9ea.tar.xz gsoc2013-evolution-dacf8177a931cfd4914a2eb0499dcb6aa0d2a9ea.tar.zst gsoc2013-evolution-dacf8177a931cfd4914a2eb0499dcb6aa0d2a9ea.zip |
Iain's fix did not help, fixing myself. closes #1914
svn path=/trunk/; revision=9112
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/importer/evolution-importer-client.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 0b5c3836e1..a402bb638b 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -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. diff --git a/shell/importer/evolution-importer-client.c b/shell/importer/evolution-importer-client.c index 00ec8208b9..0921dd8773 100644 --- a/shell/importer/evolution-importer-client.c +++ b/shell/importer/evolution-importer-client.c @@ -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; |