gnucash maint: Multiple changes pushed

Christopher Lam clam at code.gnucash.org
Tue Mar 30 06:08:49 EDT 2021


Updated	 via  https://github.com/Gnucash/gnucash/commit/55ecaa92 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/0a9f9821 (commit)
	from  https://github.com/Gnucash/gnucash/commit/e366b29b (commit)



commit 55ecaa92524ac86ee1fb8c80bca4b7a4c1c59b36
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Tue Mar 30 06:51:07 2021 +0800

    [report-core] fix error string

diff --git a/gnucash/report/report-core.scm b/gnucash/report/report-core.scm
index 775797ca3..e5381dbb2 100644
--- a/gnucash/report/report-core.scm
+++ b/gnucash/report/report-core.scm
@@ -214,11 +214,11 @@
 (define (gui-error str)
   (if (gnucash-ui-is-running)
       (gnc-error-dialog '() str)
-      (gnc:error "report-impl.scm error: " str)))
+      (gnc:error "report-core.scm error: " str)))
 (define (gui-warning str)
   (if (gnucash-ui-is-running)
       (gnc-warning-dialog '() str)
-      (gnc:warn "report-impl.scm warning: " str)))
+      (gnc:warn "report-core.scm warning: " str)))
 (define (gui-error-missing-template template-name)
   (gui-error
    (string-append

commit 0a9f9821ca442cc67461887b5fb74054b2b13c45
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Mon Mar 29 22:52:33 2021 +0800

    [report-core] Remove unused string definition

diff --git a/gnucash/report/report-core.scm b/gnucash/report/report-core.scm
index c310d0159..775797ca3 100644
--- a/gnucash/report/report-core.scm
+++ b/gnucash/report/report-core.scm
@@ -210,8 +210,7 @@
   (G_ "One of your reports has a report-guid that is a duplicate. Please check the report system, especially your saved reports, for a report with this report-guid: "))
 (define rpterr-guid1 (G_ "Wrong report definition: "))
 (define rpterr-guid2 (G_ " Report is missing a GUID."))
-(define rptwarn-legacy
-  (G_ "Some reports stored in a legacy format were found. This format is not supported anymore so these reports may not have been restored properly."))
+
 (define (gui-error str)
   (if (gnucash-ui-is-running)
       (gnc-error-dialog '() str)



Summary of changes:
 gnucash/report/report-core.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)



More information about the gnucash-changes mailing list