2002-07-21 Christian Stimming <stimming@tuhh.de>

* src/app-utils/guile-util.c (gnc_get_debit_string): Fix by Matt
	Armstrong <matt@lickey.com> : Look for "Use accounting labels"
	option is under the "Accounts" section.
 	(gnc_get_credit_string): ditto.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7122 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2002-07-21 21:39:06 +00:00
parent 0ca1681638
commit e62f438452
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
2002-07-21 Christian Stimming <stimming@tuhh.de> 2002-07-21 Christian Stimming <stimming@tuhh.de>
* src/app-utils/guile-util.c (gnc_get_debit_string): Fix by Matt
Armstrong <matt@lickey.com> : Look for "Use accounting labels"
option is under the "Accounts" section.
(gnc_get_credit_string): ditto.
* src/backend/file/gnc-backend-file.c: File permission fix by Matt * src/backend/file/gnc-backend-file.c: File permission fix by Matt
Brubeck <mbrubeck@cs.hmc.edu> Brubeck <mbrubeck@cs.hmc.edu>

View File

@ -1108,7 +1108,7 @@ gnc_get_debit_string(GNCAccountType account_type)
initialize_scm_functions(); initialize_scm_functions();
if (gnc_lookup_boolean_option("General", "Use accounting labels", FALSE)) if (gnc_lookup_boolean_option("Accounts", "Use accounting labels", FALSE))
return g_strdup(_("Debit")); return g_strdup(_("Debit"));
if ((account_type < NO_TYPE) || (account_type >= NUM_ACCOUNT_TYPES)) if ((account_type < NO_TYPE) || (account_type >= NUM_ACCOUNT_TYPES))
@ -1154,7 +1154,7 @@ gnc_get_credit_string(GNCAccountType account_type)
initialize_scm_functions(); initialize_scm_functions();
if (gnc_lookup_boolean_option("General", "Use accounting labels", FALSE)) if (gnc_lookup_boolean_option("Accounts", "Use accounting labels", FALSE))
return g_strdup(_("Credit")); return g_strdup(_("Credit"));
if ((account_type < NO_TYPE) || (account_type >= NUM_ACCOUNT_TYPES)) if ((account_type < NO_TYPE) || (account_type >= NUM_ACCOUNT_TYPES))