comparison mcabber/mcabber/xmpp_helper.c @ 1729:e6e89b1d7831

Minor style and header updates
author Mikael Berthe <mikael@lilotux.net>
date Sun, 28 Feb 2010 15:19:27 +0100
parents ab502d645378
children d2747442918a
comparison
equal deleted inserted replaced
1728:15b3834cbe5f 1729:e6e89b1d7831
131 prev_sibling->next = node->next; 131 prev_sibling->next = node->next;
132 if (node->next) 132 if (node->next)
133 node->next->prev = prev_sibling; 133 node->next->prev = prev_sibling;
134 } 134 }
135 135
136 //maybe not a good idea, because it uses internals of loudmouth... 136 // Maybe not a good idea, because it uses internals of loudmouth...
137 //it's used for rosternotes/bookmarks 137 // It's used for rosternotes/bookmarks
138 LmMessageNode *lm_message_node_new(const gchar *name, const gchar *xmlns) 138 LmMessageNode *lm_message_node_new(const gchar *name, const gchar *xmlns)
139 { 139 {
140 LmMessageNode *node; 140 LmMessageNode *node;
141 141
142 node = g_new0 (LmMessageNode, 1); 142 node = g_new0 (LmMessageNode, 1);