mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-23 09:26:27 -06:00
[Engine Test] Fix parameter setup error detected with unit test.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20935 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
e7534148cc
commit
2c8bf7be19
@ -836,14 +836,14 @@ gnc_account_class_init (AccountClass *klass)
|
||||
g_object_class_install_property
|
||||
(gobject_class,
|
||||
PROP_TAX_COPY_NUMBER,
|
||||
g_param_spec_int ("tax-copy-number",
|
||||
"Tax Copy Number",
|
||||
"This specifies the copy number of the tax "
|
||||
"form/schedule.",
|
||||
1,
|
||||
G_MAXINT16,
|
||||
1,
|
||||
G_PARAM_READWRITE));
|
||||
g_param_spec_int64 ("tax-copy-number",
|
||||
"Tax Copy Number",
|
||||
"This specifies the copy number of the tax "
|
||||
"form/schedule.",
|
||||
(gint64)1,
|
||||
G_MAXINT64,
|
||||
(gint64)1,
|
||||
G_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property
|
||||
(gobject_class,
|
||||
|
Loading…
Reference in New Issue
Block a user