We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a54bf2 commit ae58c12Copy full SHA for ae58c12
gnucash/import-export/import-main-matcher.cpp
@@ -1871,9 +1871,8 @@ get_peer_acct_names (Split *split)
1871
(g_list_find (accounts_seen, account)))
1872
continue;
1873
gchar *name = gnc_account_get_full_name (account);
1874
- names = g_list_prepend (names, g_strdup_printf ("\"%s\"", name));
+ names = g_list_prepend (names, name);
1875
accounts_seen = g_list_prepend (accounts_seen, account);
1876
- g_free (name);
1877
}
1878
names = g_list_sort (names, (GCompareFunc)g_utf8_collate);
1879
auto retval = gnc_list_formatter (names);
0 commit comments