コード例 #1
0
ファイル: UI.cpp プロジェクト: Arg410/ouya-sdk-examples
void UI::DestroyLabel(void** uiLabel)
{
	if (*uiLabel)
	{
		NVBFTextFree(*uiLabel);
		*uiLabel = 0;
	}
}
コード例 #2
0
void TextButton::Destroy()
{
	if (UIText)
	{
		NVBFTextFree(UIText);
		UIText = 0;
	}
}
コード例 #3
0
ファイル: engine.cpp プロジェクト: CZdravko/NV-Globe
Engine::~Engine()
{
	NVBFTextFree(m_clockText);
	NVBFCleanup();

	delete mDrawRect;

	if (mGlobeApp)
	{
		mGlobeApp->cleanup();
		delete mGlobeApp;
	}

	delete m_music;
}