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 /epggrid.c | |
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
Diffstat (limited to 'epggrid.c')
-rw-r--r-- | epggrid.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; |