diff options
author | louis <louis.braun@gmx.de> | 2015-05-01 10:53:53 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-05-01 10:53:53 +0200 |
commit | 32c369952ea8559b4b721d8c71c0eb5ecfbbec2c (patch) | |
tree | 5c0dd16f5eefa06e86d20b73e833a515f64c5ebf | |
parent | c1dca35dbaa3ff202768fe3fa56d40c1395839b6 (diff) | |
download | vdr-plugin-tvguideng-32c369952ea8559b4b721d8c71c0eb5ecfbbec2c.tar.gz vdr-plugin-tvguideng-32c369952ea8559b4b721d8c71c0eb5ecfbbec2c.tar.bz2 |
fixed crash when closing tvguide with active blinking icon
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | epggrid.c | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -33,3 +33,4 @@ Version 0.1.1 Version 0.1.2 +- fixed crash when closing tvguide with active blinking icon @@ -38,6 +38,9 @@ cEpgGrid::~cEpgGrid(void) { delete back; delete header; delete footer; + for (cChannelEpg *channelEpg = channels.First(); channelEpg; channelEpg = channels.Next(channelEpg)) { + channelEpg->DeleteGridViews(epgGrid); + } channels.Clear(); delete channelsGrid; delete channelGroups; |