diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-corba-storage.c | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index d29cbfe6b4..7f6d2a7ba6 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-09-28 Dan Winship <danw@helixcode.com> + + * e-corba-storage.c (impl_StorageListener_new_folder): Don't print + "Folder registered successfully" if it didn't. (Duh. :) + 2000-09-28 Ettore Perazzoli <ettore@helixcode.com> * e-shell-view.c: New constant `DEFAULT_URI'. diff --git a/shell/e-corba-storage.c b/shell/e-corba-storage.c index 2b3b8dee9d..b871b73cfb 100644 --- a/shell/e-corba-storage.c +++ b/shell/e-corba-storage.c @@ -118,9 +118,8 @@ impl_StorageListener_new_folder (PortableServer_Servant servant, ex_Evolution_StorageListener_Exists, NULL); gtk_object_unref (GTK_OBJECT (e_folder)); - } - - g_print ("Folder registered successfully -- %s %s\n", path, folder->display_name); + } else + g_print ("Folder registered successfully -- %s %s\n", path, folder->display_name); } static void |