r15967 - gnucash/trunk - Use GNC_TYPE_NUMERIC instead of GNC_NUMERIC.

David Hampton hampton at cvs.gnucash.org
Sat Apr 21 16:07:24 EDT 2007


Author: hampton
Date: 2007-04-21 16:07:23 -0400 (Sat, 21 Apr 2007)
New Revision: 15967
Trac: http://svn.gnucash.org/trac/changeset/15967

Modified:
   gnucash/trunk/lib/libqof/qof/gnc-numeric.h
   gnucash/trunk/src/engine/Account.c
Log:
Use GNC_TYPE_NUMERIC instead of GNC_NUMERIC.


Modified: gnucash/trunk/lib/libqof/qof/gnc-numeric.h
===================================================================
--- gnucash/trunk/lib/libqof/qof/gnc-numeric.h	2007-04-21 19:43:11 UTC (rev 15966)
+++ gnucash/trunk/lib/libqof/qof/gnc-numeric.h	2007-04-21 20:07:23 UTC (rev 15967)
@@ -451,7 +451,7 @@
   @{
 */
 GType gnc_numeric_get_type( void );
-#define GNC_NUMERIC (gnc_numeric_get_type ())
+#define GNC_TYPE_NUMERIC (gnc_numeric_get_type ())
 
 /** @} */
 

Modified: gnucash/trunk/src/engine/Account.c
===================================================================
--- gnucash/trunk/src/engine/Account.c	2007-04-21 19:43:11 UTC (rev 15966)
+++ gnucash/trunk/src/engine/Account.c	2007-04-21 20:07:23 UTC (rev 15967)
@@ -617,7 +617,7 @@
                             "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 @@
                             "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 @@
                             "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 @@
                             "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 @@
                             "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 @@
                             "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



More information about the gnucash-changes mailing list