Hi

in file gnode.c, function g_node_first_sibling():

...
while (node->prev)
  node = node->prev
return node
...


More effective this:????
...
g_return_val_if_fail(node->parent != NULL, node);
node = node->parent->children;
return node;
...

bye Michal Burda

Objevujte Internet s http://www.centrum.cz
Založte si svuj mail na http://mail.centrum.cz

_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to