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 /shell/e-shell-importer.c | |
parent | 7b8ae9b9945157bffaf34cc69a2afe33b9ab9a6b (diff) | |
download | gsoc2013-evolution-d9d1469a926eb86e2fb18a02d27a5cb9de4b7aff.tar.gz 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
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r-- | shell/e-shell-importer.c | 3 |
1 files changed, 1 insertions, 2 deletions
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; |