Fix some g-object parameter types

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22181 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2012-05-20 21:18:45 +00:00
parent 083861e225
commit d1fcb82ad0

View File

@ -408,7 +408,7 @@ gnc_transaction_class_init(TransactionClass* klass)
g_param_spec_boxed("post-date", g_param_spec_boxed("post-date",
"Post Date", "Post Date",
"The date the transaction occurred.", "The date the transaction occurred.",
GNC_TYPE_NUMERIC, GNC_TYPE_TIMESPEC,
G_PARAM_READWRITE)); G_PARAM_READWRITE));
g_object_class_install_property g_object_class_install_property
@ -417,7 +417,7 @@ gnc_transaction_class_init(TransactionClass* klass)
g_param_spec_boxed("enter-date", g_param_spec_boxed("enter-date",
"Enter Date", "Enter Date",
"The date the transaction was entered.", "The date the transaction was entered.",
GNC_TYPE_NUMERIC, GNC_TYPE_TIMESPEC,
G_PARAM_READWRITE)); G_PARAM_READWRITE));
} }