diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-03-20 04:30:37 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-03-20 04:30:37 +0800 |
commit | d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff (patch) | |
tree | 0e5acb7d7b0ba0e507c332a129468982e96169a2 | |
parent | 7b8ae9b9945157bffaf34cc69a2afe33b9ab9a6b (diff) | |
download | gsoc2013-evolution-d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff.tar gsoc2013-evolution-d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff.tar.gz gsoc2013-evolution-d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff.tar.bz2 gsoc2013-evolution-d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff.tar.lz gsoc2013-evolution-d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff.tar.xz gsoc2013-evolution-d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff.tar.zst gsoc2013-evolution-d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff.zip |
(get_name_from_component_info): Look for the
"evolution:menu_name" property instead of "evolution:menu-name".
[#39692]
svn path=/trunk/; revision=20370
-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; |