[Gnucash-changes] r13342 - gnucash/trunk/lib/libqof/qof - slightly better values.

Joshua Sled jsled at cvs.gnucash.org
Tue Feb 21 10:42:20 EST 2006


Author: jsled
Date: 2006-02-21 10:42:19 -0500 (Tue, 21 Feb 2006)
New Revision: 13342
Trac: http://svn.gnucash.org/trac/changeset/13342

Modified:
   gnucash/trunk/lib/libqof/qof/qofevent.h
Log:
slightly better values.


Modified: gnucash/trunk/lib/libqof/qof/qofevent.h
===================================================================
--- gnucash/trunk/lib/libqof/qof/qofevent.h	2006-02-21 15:37:12 UTC (rev 13341)
+++ gnucash/trunk/lib/libqof/qof/qofevent.h	2006-02-21 15:42:19 UTC (rev 13342)
@@ -45,11 +45,11 @@
 any process can define their own events. 
 */
 #define QOF_EVENT_NONE     (0)
-#define QOF_EVENT_CREATE   (1 << 1)
-#define QOF_EVENT_MODIFY   (1 << 2)
-#define QOF_EVENT_DESTROY  (1 << 3)
-#define QOF_EVENT_ADD      (1 << 4)
-#define QOF_EVENT_REMOVE   (1 << 5)
+#define QOF_EVENT_CREATE   (1 << 0)
+#define QOF_EVENT_MODIFY   (1 << 1)
+#define QOF_EVENT_DESTROY  (1 << 2)
+#define QOF_EVENT_ADD      (1 << 3)
+#define QOF_EVENT_REMOVE   (1 << 4)
 #define QOF_EVENT_ALL      (0xff)
 
 /** Allow scope for more defaults in future. Additional



More information about the gnucash-changes mailing list