diff --git a/src/gnome/window-report.c b/src/gnome/window-report.c index 13bced3441..35e7119de0 100644 --- a/src/gnome/window-report.c +++ b/src/gnome/window-report.c @@ -231,7 +231,10 @@ gnc_run_report(ReportData *report_data) gnc_unset_busy_cursor(NULL); if (!gh_string_p(result)) + { + PERR("Report output was not a string.\n"); return NULL; + } return gh_scm2newstr(result, NULL); } diff --git a/src/messages_i18n.h b/src/messages_i18n.h index 5c128f0ea3..50dabc45af 100644 --- a/src/messages_i18n.h +++ b/src/messages_i18n.h @@ -657,6 +657,7 @@ #define WEEKS_STR _("Weeks") #define WIRE_STR _("Wire") /* Electronic Wire transfer */ #define WITHDRAW_STR _("Withdraw") +#define WITHDRAWAL_STR _("Withdrawal") #define YEARS_STR _("Years") #define YES_STR _("Yes") diff --git a/src/scm/prefs.scm b/src/scm/prefs.scm index 4b23d904df..a2c20f4170 100644 --- a/src/scm/prefs.scm +++ b/src/scm/prefs.scm @@ -100,7 +100,7 @@ (define gnc:*credit-strings* (list '(NO_TYPE . "Funds Out") - '(BANK . "Payment") + '(BANK . "Withdrawal") '(CASH . "Spend") '(CREDIT . "Charge") '(ASSET . "Depreciation")