From e62f438452088fecc001169ff46ecc2a20cfb223 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Sun, 21 Jul 2002 21:39:06 +0000 Subject: [PATCH] 2002-07-21 Christian Stimming * src/app-utils/guile-util.c (gnc_get_debit_string): Fix by Matt Armstrong : 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 --- ChangeLog | 5 +++++ src/app-utils/guile-util.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2a733067f1..037c3038b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2002-07-21 Christian Stimming + * src/app-utils/guile-util.c (gnc_get_debit_string): Fix by Matt + Armstrong : 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 Brubeck diff --git a/src/app-utils/guile-util.c b/src/app-utils/guile-util.c index 506982a540..f13e5f10c7 100644 --- a/src/app-utils/guile-util.c +++ b/src/app-utils/guile-util.c @@ -1108,7 +1108,7 @@ gnc_get_debit_string(GNCAccountType account_type) 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")); if ((account_type < NO_TYPE) || (account_type >= NUM_ACCOUNT_TYPES)) @@ -1154,7 +1154,7 @@ gnc_get_credit_string(GNCAccountType account_type) 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")); if ((account_type < NO_TYPE) || (account_type >= NUM_ACCOUNT_TYPES))