mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-12-01 04:59:29 -06:00
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:
parent
685c30368b
commit
32a6629abb
@ -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.
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user