From 2b16fa1f413f39b1fb80548007334dfbb80b478a Mon Sep 17 00:00:00 2001 From: David Hampton Date: Sat, 21 Apr 2007 20:07:23 +0000 Subject: [PATCH] Use GNC_TYPE_NUMERIC instead of GNC_NUMERIC. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15967 57a11ea4-9604-0410-9ed3-97b8803252fd --- lib/libqof/qof/gnc-numeric.h | 2 +- src/engine/Account.c | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/libqof/qof/gnc-numeric.h b/lib/libqof/qof/gnc-numeric.h index edb88bfb2b..f6d7524006 100644 --- a/lib/libqof/qof/gnc-numeric.h +++ b/lib/libqof/qof/gnc-numeric.h @@ -451,7 +451,7 @@ gnc_numeric gnc_numeric_reduce(gnc_numeric in); @{ */ GType gnc_numeric_get_type( void ); -#define GNC_NUMERIC (gnc_numeric_get_type ()) +#define GNC_TYPE_NUMERIC (gnc_numeric_get_type ()) /** @} */ diff --git a/src/engine/Account.c b/src/engine/Account.c index d9915ddf1e..e40c9e11f5 100644 --- a/src/engine/Account.c +++ b/src/engine/Account.c @@ -617,7 +617,7 @@ gnc_account_class_init (AccountClass *klass) "all of the splits after some certain date, and " "the 'starting balance' will represent the " "summation of the splits up to that date.", - GNC_NUMERIC, + GNC_TYPE_NUMERIC, G_PARAM_READWRITE)); g_object_class_install_property @@ -634,7 +634,7 @@ gnc_account_class_init (AccountClass *klass) "some certain date, and the 'starting cleared " "balance' will represent the summation of the " "splits up to that date.", - GNC_NUMERIC, + GNC_TYPE_NUMERIC, G_PARAM_READWRITE)); g_object_class_install_property @@ -651,7 +651,7 @@ gnc_account_class_init (AccountClass *klass) "some certain date, and the 'starting recontiled " "balance' will represent the summation of the " "splits up to that date.", - GNC_NUMERIC, + GNC_TYPE_NUMERIC, G_PARAM_READWRITE)); g_object_class_install_property @@ -662,7 +662,7 @@ gnc_account_class_init (AccountClass *klass) "This is the current ending balance for the " "account. It is computed from the sum of the " "starting balance and all splits in the account.", - GNC_NUMERIC, + GNC_TYPE_NUMERIC, G_PARAM_READABLE)); g_object_class_install_property @@ -674,7 +674,7 @@ gnc_account_class_init (AccountClass *klass) "the account. It is computed from the sum of the " "starting balance and all cleared splits in the " "account.", - GNC_NUMERIC, + GNC_TYPE_NUMERIC, G_PARAM_READABLE)); g_object_class_install_property @@ -686,7 +686,7 @@ gnc_account_class_init (AccountClass *klass) "for the account. It is computed from the sum of " "the starting balance and all reconciled splits " "in the account.", - GNC_NUMERIC, + GNC_TYPE_NUMERIC, G_PARAM_READABLE)); g_object_class_install_property