CEpgData: remove unused vars

This commit is contained in:
2017-05-06 22:25:40 +02:00
parent 8f3fcc6060
commit bbb04bfb20
2 changed files with 0 additions and 9 deletions

View File

@@ -127,10 +127,6 @@ CEpgData::CEpgData()
mp_movie_info = NULL; mp_movie_info = NULL;
header = NULL; header = NULL;
Bottombox = NULL; Bottombox = NULL;
lpic = NULL;
rpic = NULL;
lText = NULL;
rText = NULL;
pb = NULL; pb = NULL;
font_title = NULL; font_title = NULL;
} }
@@ -1515,9 +1511,6 @@ void CEpgData::ResetModules()
} }
if (Bottombox){ if (Bottombox){
delete Bottombox; Bottombox = NULL; delete Bottombox; Bottombox = NULL;
// bottom box items are destroyed but explicit reset of bottom box items here required
lpic = rpic = NULL;
lText = rText = NULL;
} }
if (pb){ if (pb){
delete pb; pb = NULL; delete pb; pb = NULL;

View File

@@ -52,8 +52,6 @@ class CEpgData
CEPGData epgData; CEPGData epgData;
CComponentsHeader *header; CComponentsHeader *header;
CNaviBar *Bottombox; CNaviBar *Bottombox;
CComponentsPictureScalable *lpic, *rpic;
CComponentsText *lText, *rText;
CProgressBar *pb; CProgressBar *pb;
Font *font_title; Font *font_title;
std::string epg_date; std::string epg_date;