[23499] Bug 627575 - Stylesheet names with non-alphanumeric characters and saved-reports

g_key_file_[gs]et_string parses the string to escape newlines and comments
This erroneously does some escaping in the #{symbol name}# guile extended format
for symbols. Since we already strip newlines and comments ourselves,
we can save and store the string without any additional parsing
using g_key_file_[gs]et_value.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/branches/2.4@23500 57a11ea4-9604-0410-9ed3-97b8803252fd
2.4
Geert Janssens 13 years ago
parent 907e911251
commit 82a574ca84

@ -773,7 +773,7 @@ gnc_plugin_page_report_save_page (GncPluginPage *plugin_page,
key_name = g_strdup_printf(SCHEME_OPTIONS_N, id);
text = gnc_guile_strip_comments(scm_to_locale_string(scm_text));
g_key_file_set_string(key_file, group_name, key_name, text);
g_key_file_set_value(key_file, group_name, key_name, text);
g_free(text);
g_free(key_name);
}
@ -786,7 +786,7 @@ gnc_plugin_page_report_save_page (GncPluginPage *plugin_page,
}
text = gnc_guile_strip_comments(scm_to_locale_string(scm_text));
g_key_file_set_string(key_file, group_name, SCHEME_OPTIONS, text);
g_key_file_set_value(key_file, group_name, SCHEME_OPTIONS, text);
g_free(text);
LEAVE(" ");
}
@ -833,7 +833,7 @@ gnc_plugin_page_report_recreate_page (GtkWidget *window,
{
if (strncmp(keys[i], SCHEME_OPTIONS, strlen(SCHEME_OPTIONS)) != 0)
continue;
option_string = g_key_file_get_string(key_file, group_name,
option_string = g_key_file_get_value(key_file, group_name,
keys[i], &error);
if (error)
{
@ -855,7 +855,7 @@ gnc_plugin_page_report_recreate_page (GtkWidget *window,
if (final_id == SCM_BOOL_F)
{
if (strcmp(keys[i], SCHEME_OPTIONS) == 0)
if (g_strcmp0(keys[i], SCHEME_OPTIONS) == 0)
{
final_id = scm_id;
}

Loading…
Cancel
Save