* books do not need to generate events

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7291 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins
2002-10-08 21:49:11 +00:00
parent a56e6be18b
commit 99df6ac3f7
2 changed files with 7 additions and 0 deletions
+3
View File
@@ -1,3 +1,6 @@
2002-10-08 Derek Atkins <derek@ihtfp.com>
* books do not need to generate events
2002-10-07 Derek Atkins <derek@ihtfp.com>
* Rename "print invoice" to "printable invoice"
+4
View File
@@ -110,7 +110,9 @@ gnc_book_new (void)
gnc_book_init(book);
gncObjectBookBegin (book);
#if 0
gnc_engine_generate_event (&book->guid, GNC_EVENT_CREATE);
#endif
LEAVE ("book=%p", book);
return book;
}
@@ -121,7 +123,9 @@ gnc_book_destroy (GNCBook *book)
if (!book) return;
ENTER ("book=%p", book);
#if 0
gnc_engine_generate_event (&book->guid, GNC_EVENT_DESTROY);
#endif
gncObjectBookEnd (book);