diff options
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-importer.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 47e7e30c34..45d1da17ef 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,11 @@ 2003-03-19 Ettore Perazzoli <ettore@ximian.com> + * e-shell-importer.c (get_name_from_component_info): Look for the + "evolution:menu_name" property instead of "evolution:menu-name". + [#39692] + +2003-03-19 Ettore Perazzoli <ettore@ximian.com> + * evolution-folder-selector-button.c (set_folder): If you can't get a pixbuf icon for the folder's type, do not crash. [#39599] diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index 005360fb69..98ae31d578 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -331,8 +331,7 @@ get_name_from_component_info (const Bonobo_ServerInfo *info) Bonobo_ActivationProperty *property; const char *name; - property = bonobo_server_info_prop_find ((Bonobo_ServerInfo *) info, - "evolution:menu-name"); + property = bonobo_server_info_prop_find ((Bonobo_ServerInfo *) info, "evolution:menu_name"); if (property == NULL || property->v._d != Bonobo_ACTIVATION_P_STRING) return NULL; |