From 58bba344e2b0ef7e7abc52e5eed3b3bd42c805fb Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Sun, 12 Oct 2003 01:35:38 +0000 Subject: [PATCH] oops git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9474 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/gnc-be-utils.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/engine/gnc-be-utils.h b/src/engine/gnc-be-utils.h index 91c6b26acd..00a46eccf2 100644 --- a/src/engine/gnc-be-utils.h +++ b/src/engine/gnc-be-utils.h @@ -145,12 +145,12 @@ (obj)->do_free = FALSE; \ (on_error)((obj), errcode); \ qof_backend_set_error (be, errcode); \ - } \ - } \ - if (on_done) { (on_done)(obj); } \ - obj->dirty = FALSE; \ - \ - if ((obj)->do_free) { (on_free)(obj); } \ + } \ + } \ + (on_done)(obj); \ + (obj)->dirty = FALSE; \ + \ + if ((obj)->do_free) { (on_free)(obj); } \ }