Esempio n. 1
0
void textEntryDestroyImpl(widget *self)
{
	// Free the text buffer
	free(TEXT_ENTRY(self)->text);
	
	// Call our parents destructor
	widgetDestroyImpl(self);
}
Esempio n. 2
0
void tableDestroyImpl(widget *self)
{
	// Destroy child positional info
	vectorMapAndDestroy(TABLE(self)->childPositions, free);
	
	// Call our parents destructor
	widgetDestroyImpl(self);
}
Esempio n. 3
0
void spacerDestroyImpl(widget *self)
{
	// Call our parents destructor
	widgetDestroyImpl(self);
}
Esempio n. 4
0
void buttonDestroyImpl(widget *self)
{
	// Call our parents destructor
	widgetDestroyImpl(self);
}