mirror of
https://github.com/chriszero/epgd-plugin-tvsp.git
synced 2025-12-26 23:26:53 +01:00
Missing destructor
This commit is contained in:
18
tvsp.c
18
tvsp.c
@@ -14,6 +14,24 @@ Tvsp::Tvsp() {
|
||||
imageSize = 1;
|
||||
saveJson = false;
|
||||
saveXml = false;
|
||||
|
||||
stmtByFileRef = NULL;
|
||||
selectByTag = NULL;
|
||||
selectDistBySource = NULL;
|
||||
selectId = NULL;
|
||||
stmtMarkOldEvents = NULL;
|
||||
|
||||
}
|
||||
|
||||
Tvsp::~Tvsp() {
|
||||
delete stmtByFileRef;
|
||||
delete selectByTag;
|
||||
delete selectDistBySource;
|
||||
delete selectId;
|
||||
delete stmtMarkOldEvents;
|
||||
|
||||
if (pxsltStylesheet)
|
||||
xsltFreeStylesheet(pxsltStylesheet);
|
||||
}
|
||||
|
||||
int Tvsp::init(cEpgd *aObject, int aUtf8) {
|
||||
|
||||
Reference in New Issue
Block a user