r21752 - gnucash/branches/2.4/src - [r21746, r21747] Fix typos in r21742 and r21743

John Ralls jralls at code.gnucash.org
Mon Dec 19 10:05:59 EST 2011


Author: jralls
Date: 2011-12-19 10:05:58 -0500 (Mon, 19 Dec 2011)
New Revision: 21752
Trac: http://svn.gnucash.org/trac/changeset/21752

Modified:
   gnucash/branches/2.4/src/engine/gncInvoice.c
   gnucash/branches/2.4/src/engine/gncOwner.c
   gnucash/branches/2.4/src/import-export/import-match-map.c
Log:
[r21746, r21747] Fix typos in r21742 and r21743

Modified: gnucash/branches/2.4/src/engine/gncInvoice.c
===================================================================
--- gnucash/branches/2.4/src/engine/gncInvoice.c	2011-12-19 13:12:35 UTC (rev 21751)
+++ gnucash/branches/2.4/src/engine/gncInvoice.c	2011-12-19 15:05:58 UTC (rev 21752)
@@ -1091,7 +1091,7 @@
     kvp = gnc_lot_get_slots (lot);
     kvp_frame_set_slot_path (kvp, NULL, GNC_INVOICE_ID, GNC_INVOICE_GUID, NULL);
     qof_instance_set_dirty (QOF_INSTANCE (lot));
-    gnc_log_commit_edit (lot);
+    gnc_lot_commit_edit (lot);
 }
 
 static void
@@ -1110,7 +1110,7 @@
     value = kvp_value_new_guid (qof_instance_get_guid (QOF_INSTANCE(invoice)));
     kvp_frame_set_slot_path (kvp, value, GNC_INVOICE_ID, GNC_INVOICE_GUID, NULL);
     qof_instance_set_dirty (QOF_INSTANCE (lot));
-    gnc_log_commit_edit (lot);
+    gnc_lot_commit_edit (lot);
     kvp_value_delete (value);
     gncInvoiceSetPostedLot (invoice, lot);
 }

Modified: gnucash/branches/2.4/src/engine/gncOwner.c
===================================================================
--- gnucash/branches/2.4/src/engine/gncOwner.c	2011-12-19 13:12:35 UTC (rev 21751)
+++ gnucash/branches/2.4/src/engine/gncOwner.c	2011-12-19 15:05:58 UTC (rev 21752)
@@ -497,7 +497,7 @@
     value = kvp_value_new_guid (gncOwnerGetGUID (owner));
     kvp_frame_set_slot_path (kvp, value, GNC_OWNER_ID, GNC_OWNER_GUID, NULL);
     qof_instance_set_dirty (QOF_INSTANCE (lot));
-    gnc_log_commit_edit (lot);
+    gnc_lot_commit_edit (lot);
     kvp_value_delete (value);
 
 }

Modified: gnucash/branches/2.4/src/import-export/import-match-map.c
===================================================================
--- gnucash/branches/2.4/src/import-export/import-match-map.c	2011-12-19 13:12:35 UTC (rev 21751)
+++ gnucash/branches/2.4/src/import-export/import-match-map.c	2011-12-19 15:05:58 UTC (rev 21752)
@@ -157,7 +157,7 @@
     xaccAccountBeginEdit (imap->acc);
     kvp_frame_set_slot_path (imap->frame, value, IMAP_FRAME, category, key, NULL);
     qof_instance_set_dirty (QOF_INSTANCE (imap->acc));
-    xaccAccountCommit (imap->acc);
+    xaccAccountCommitEdit (imap->acc);
     kvp_value_delete (value);
 
     /* XXX Mark the account (or book) as dirty! */



More information about the gnucash-changes mailing list