diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-06-21 21:41:03 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-06-21 21:41:03 +0800 |
commit | 3c2e03fa5c1f013f06c6134d5cb7244c94994936 (patch) | |
tree | 0bf7dd060c3d58b994d4574d13769399f6e36fab | |
parent | 26a0168f9ef74f0f13009245aa99d0d86acfce9f (diff) | |
download | gsoc2013-evolution-3c2e03fa5c1f013f06c6134d5cb7244c94994936.tar gsoc2013-evolution-3c2e03fa5c1f013f06c6134d5cb7244c94994936.tar.gz gsoc2013-evolution-3c2e03fa5c1f013f06c6134d5cb7244c94994936.tar.bz2 gsoc2013-evolution-3c2e03fa5c1f013f06c6134d5cb7244c94994936.tar.lz gsoc2013-evolution-3c2e03fa5c1f013f06c6134d5cb7244c94994936.tar.xz gsoc2013-evolution-3c2e03fa5c1f013f06c6134d5cb7244c94994936.tar.zst gsoc2013-evolution-3c2e03fa5c1f013f06c6134d5cb7244c94994936.zip |
extended_g_node_insert_before: Small correction.
-rw-r--r-- | mail/message-list.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 303eafc701..898b1c4af4 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -415,6 +415,7 @@ extended_g_node_insert_before (GNode *parent, /* This is where tracking the last child pays off. */ if (sibling == NULL && ext_parent->last_child != NULL) { + node->parent = parent; node->prev = ext_parent->last_child; ext_parent->last_child->next = node; } else { |