mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/app-utils/prefs.scm: Remove "user name" and "user address"
preferences, as they are no longer used by anything. * src/report/standard/reports/register.scm: we're not using the 'invoice' portion anymore, so we don't need references to user name and user address preferences. This removes the "User Info" page from the Global Preferences. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7847 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
8f95724061
commit
9de4ec1b86
@ -45,6 +45,13 @@
|
||||
|
||||
FIXES 93462.
|
||||
|
||||
* src/app-utils/prefs.scm: Remove "user name" and "user address"
|
||||
preferences, as they are no longer used by anything.
|
||||
* src/report/standard/reports/register.scm: we're not using the
|
||||
'invoice' portion anymore, so we don't need references to user
|
||||
name and user address preferences. This removes the "User Info"
|
||||
page from the Global Preferences.
|
||||
|
||||
2003-01-16 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* src/engine/commodity-table.scm: move gnc:commodity-is-currency? here
|
||||
|
@ -360,15 +360,15 @@ to enter a credit card payment")
|
||||
|
||||
;;; User Info Options
|
||||
|
||||
(gnc:register-configuration-option
|
||||
(gnc:make-string-option
|
||||
(N_ "User Info") (N_ "User Name")
|
||||
"b" (N_ "The name of the user. This is used in some reports.") ""))
|
||||
;(gnc:register-configuration-option
|
||||
; (gnc:make-string-option
|
||||
; (N_ "User Info") (N_ "User Name")
|
||||
; "b" (N_ "The name of the user. This is used in some reports.") ""))
|
||||
|
||||
(gnc:register-configuration-option
|
||||
(gnc:make-text-option
|
||||
(N_ "User Info") (N_ "User Address")
|
||||
"c" (N_ "The address of the user. This is used in some reports.") ""))
|
||||
;(gnc:register-configuration-option
|
||||
; (gnc:make-text-option
|
||||
; (N_ "User Info") (N_ "User Address")
|
||||
; "c" (N_ "The address of the user. This is used in some reports.") ""))
|
||||
|
||||
|
||||
;;; General Options
|
||||
|
@ -553,12 +553,14 @@
|
||||
document
|
||||
(gnc:make-html-text
|
||||
(gnc:html-markup-br)
|
||||
(gnc:option-value
|
||||
(gnc:lookup-global-option "User Info" "User Name"))
|
||||
;;(gnc:option-value
|
||||
;; (gnc:lookup-global-option "User Info" "User Name"))
|
||||
"User Name"
|
||||
(gnc:html-markup-br)
|
||||
(string-expand
|
||||
(gnc:option-value
|
||||
(gnc:lookup-global-option "User Info" "User Address"))
|
||||
;;(gnc:option-value
|
||||
;; (gnc:lookup-global-option "User Info" "User Address"))
|
||||
"User Address"
|
||||
#\newline
|
||||
"<br>")
|
||||
(gnc:html-markup-br)))
|
||||
|
Loading…
Reference in New Issue
Block a user