From 0d72307a839fd83353fa5dd0743b9cb13689723e Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Mon, 12 Dec 2005 20:01:50 +0000 Subject: escape the string when generating XML UI description of component switcher 2005-12-12 David Malcolm * e-shell-window.c (setup_widgets): escape the string when generating XML UI description of component switcher menu item, to avoid it being non-well-formed when a translation contains a quote character. Fixes #322001 svn path=/trunk/; revision=30760 --- shell/e-shell-window.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'shell/e-shell-window.c') diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index f45d047f8c..9bfc225fa6 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -708,7 +708,7 @@ setup_widgets (EShellWindow *window) button_id = 0; xml = g_string_new(""); for (p = e_component_registry_peek_list (registry); p != NULL; p = p->next) { - char *tmp; + char *tmp, *tmp2; EComponentInfo *info = p->data; ComponentView *view = component_view_new (info->id, info->alias, button_id); @@ -732,7 +732,12 @@ setup_widgets (EShellWindow *window) info->alias, info->menu_label, info->menu_accelerator); - g_string_append_printf(xml, _("Switch to %s"), info->button_label); + tmp = g_strdup_printf (_("Switch to %s"), info->button_label); + tmp2 = g_markup_escape_text (tmp, -1); + g_string_append (xml, tmp2); + g_free (tmp2); + g_free (tmp); + tmp = bonobo_ui_util_pixbuf_to_xml (info->menu_icon), g_string_append_printf(xml, "\" pixtype=\"pixbuf\" pixname=\"%s\"/>" "\n", -- cgit v1.2.3