[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:
John Ralls 2011-07-17 17:35:20 +00:00
parent e7534148cc
commit 2c8bf7be19

View File

@ -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,