2002-11-12 Benoit Gr�goire <bock@step.polymtl.ca>

* src/import-export/ofx/gnc-ofx-import.c: Fix call to
	g_strdup_printf in Christian's 2002-11-03 translation patch.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7470 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Benoit Grégoire 2002-11-12 13:36:49 +00:00
parent 8b06515b73
commit ac12d3226e
2 changed files with 10 additions and 7 deletions

View File

@ -1,3 +1,7 @@
2002-11-12 Benoit Grégoire <bock@step.polymtl.ca>
* src/import-export/ofx/gnc-ofx-import.c: Fix call to
g_strdup_printf in Christian's 2002-11-03 translation patch.
2002-11-12 Benoit Grégoire <bock@step.polymtl.ca>
* src/import-export/Transaction-matcher.c
* src/import-export/generic-import.glade: First round of

View File

@ -296,13 +296,12 @@ int ofx_proc_transaction_cb(struct OfxTransactionData data)
NULL);
if(investment_commodity!=NULL)
{
g_strdup_printf(investment_account_text,
/* This string is a default account
name. It MUST NOT contain the
character ':' anywhere in it or
in any translations. */
_("Stock account for security \"%s\""),
data.security_data_ptr->secname);
investment_account_text = g_strdup_printf( /* This string is a default account
name. It MUST NOT contain the
character ':' anywhere in it or
in any translations. */
_("Stock account for security \"%s\""),
data.security_data_ptr->secname);
investment_account = gnc_import_select_account(data.unique_id,
1,
investment_account_text,