gui/infoviewer.cpp: add destructor

This commit is contained in:
[CST] Focus
2012-05-04 16:52:07 +04:00
parent 7a1a165670
commit 1e1b370321
2 changed files with 10 additions and 0 deletions

View File

@@ -97,6 +97,15 @@ CInfoViewer::CInfoViewer ()
Init();
}
CInfoViewer::~CInfoViewer()
{
delete sigscale;
delete snrscale;
delete hddscale;
delete varscale;
delete timescale;
}
void CInfoViewer::Init()
{
frameBuffer = CFrameBuffer::getInstance ();

View File

@@ -170,6 +170,7 @@ class CInfoViewer
uint32_t lcdUpdateTimer;
CInfoViewer();
~CInfoViewer();
void showMovieTitle(const int playState, const std::string &title,
const std::string &g_file_epg, const std::string &g_file_epg1,
const int duration, const int curr_pos);