Need to escape user input string to prevent errors from gtk.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12064 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2005-11-29 03:28:11 +00:00
parent 685c30368b
commit 32a6629abb
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2005-11-28 David Hampton <hampton@employees.org>
* src/import-export/qif-import/druid-qif-import.c: Need to escape
user input string to prevent errors from gtk.
* src/gnome-utils/gnc-main-window.c:
* Makefile.am:
* TRANSLATORS: Fix the translator credits in the gtk2.6 about box.

View File

@ -1529,7 +1529,7 @@ make_qif_druid_page(gnc_commodity * comm)
/* save the old commodity name */
str = gnc_commodity_get_mnemonic(comm);
str = str ? str : "";
title = g_strdup_printf(_("Enter information about \"%s\""), str);
title = g_markup_printf_escaped(_("Enter information about \"%s\""), str);
gnome_druid_page_standard_set_background(page, & std_bg_color);
gnome_druid_page_standard_set_logo_background(page, & std_logo_bg_color);