Make the "Welcome to GnuCash" report menu item build the entire

report, instead of just the first sub-report.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13822 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2006-04-21 21:14:18 +00:00
parent 1b16f1e3ad
commit 8de7eaa17b
3 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,10 @@
2006-04-21 David Hampton <hampton@employees.org>
* src/report/utility-reports/welcome-to-gnucash.scm:
* src/report/report-gnome/report-gnome.scm: Make the "Welcome to
GnuCash" report menu item build the entire report, instead of just
the first sub-report.
* src/report/report-system/report.scm:
* src/report/report-system/report-system.scm:
* src/report/report-gnome/gnc-plugin-page-report.c: Correctly save

View File

@ -18,6 +18,7 @@
(gnc:module-load "gnucash/gnome-utils" 0)
(gnc:module-load "gnucash/report/report-system" 0)
(gnc:module-load "gnucash/report/utility-reports" 0)
(export gnc:report-edit-options)
(export gnc:report-menu-setup)
@ -119,4 +120,12 @@
;; push reports (new items added on top of menu)
(gnc:add-report-template-menu-items)
;; the Welcome to GnuCash "extravaganza" report
(gnc:add-extension
(gnc:make-menu-item
(N_ "Welcome Sample Report")
(N_ "Welcome-to-GnuCash report screen")
(list gnc:menuname-reports gnc:menuname-utility "")
(lambda (window)
(gnc:main-window-open-report (gnc:make-welcome-report) window))))
)

View File

@ -87,6 +87,7 @@
(gnc:define-report
'name (N_ "Welcome to GnuCash")
'version 1
'in-menu? #f
'menu-path (list gnc:menuname-utility)
'options-generator options
'renderer renderer)