コード例 #1
0
void textEntryDestroyImpl(widget *self)
{
	// Free the text buffer
	free(TEXT_ENTRY(self)->text);
	
	// Call our parents destructor
	widgetDestroyImpl(self);
}
コード例 #2
0
ファイル: table.cpp プロジェクト: ArtemusRus/warzone2100
void tableDestroyImpl(widget *self)
{
	// Destroy child positional info
	vectorMapAndDestroy(TABLE(self)->childPositions, free);
	
	// Call our parents destructor
	widgetDestroyImpl(self);
}
コード例 #3
0
ファイル: spacer.cpp プロジェクト: CorvusCorax/warzone2100
void spacerDestroyImpl(widget *self)
{
	// Call our parents destructor
	widgetDestroyImpl(self);
}
コード例 #4
0
ファイル: button.cpp プロジェクト: BG1/warzone2100
void buttonDestroyImpl(widget *self)
{
	// Call our parents destructor
	widgetDestroyImpl(self);
}