Rename a data structure field.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13482 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2006-03-04 23:06:39 +00:00
parent b75fc606fd
commit d46c86ca3a
2 changed files with 2 additions and 2 deletions

View File

@@ -956,7 +956,7 @@ static void trans_cleanup_commit(Transaction *trans)
/* Existing split either moved to another transaction or /* Existing split either moved to another transaction or
was destroyed, drop from list */ was destroyed, drop from list */
GncEventData ed; GncEventData ed;
ed.parent = trans; ed.node = trans;
ed.idx = g_list_index(trans->splits, s); ed.idx = g_list_index(trans->splits, s);
trans->splits = g_list_remove(trans->splits, s); trans->splits = g_list_remove(trans->splits, s);
qof_event_gen(&s->inst.entity, QOF_EVENT_REMOVE, &ed); qof_event_gen(&s->inst.entity, QOF_EVENT_REMOVE, &ed);

View File

@@ -26,7 +26,7 @@
#include <glib.h> #include <glib.h>
typedef struct { typedef struct {
gpointer parent; gpointer node;
gint idx; gint idx;
} GncEventData; } GncEventData;