Fwd: gobjectification: b0ea2094: Fixed a few delegators and default blist...

Paul Aurich paul at darkrain42.org
Thu Jul 16 04:24:16 EDT 2009


Begin forwarded message:
> From: aluink at soc.pidgin.im
> Date: July 15, 2009 20:05:35  PDT
> To: commits at pidgin.im
> Subject: gobjectification: b0ea2094: Fixed a few delegators and  
> default blist...
> Reply-To: devel at pidgin.im
>

> void
> purple_blist_node_add_child(PurpleBlistNode *parent, PurpleBlistNode  
> *child)
> {
> +	PurpleBlistNodeClass *klass;
> +
> +	g_return_if_fail(PURPLE_IS_BLIST_NODE(parent));
> +	g_return_if_fail(PURPLE_IS_BLIST_NODE(child));
> +
> +	klass = PURPLE_GET_BLIST_NODE_CLASS(parent);
> +	if(klass && klass->add_child)
> +		klass->add_sibling(parent, child);

                         ^^^^^^^^^^^^
add_child?

~Paul




More information about the Devel mailing list