Пример #1
0
void Widget_DestroyAttributes(LCUI_Widget w)
{
	if (w->attributes) {
		Dict_Release(w->attributes);
	}
	w->attributes = NULL;
}
Пример #2
0
void LCUI_ExitCSSParser( void )
{
	Dict_Release( self.parsers );
}
Пример #3
0
void StrDict_Release( Dict *d )
{
	free( d->privdata );
	d->privdata = NULL;
	Dict_Release( d );
}