fixed Bug that channel info was not shown when displaying reruns with epgsearch

This commit is contained in:
louis
2014-11-22 11:48:54 +01:00
parent be0aa49068
commit 77368ebbd1
3 changed files with 4 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ private:
public:
cDisplayMenuSchedulesView(cTemplateView *tmplView, eMenuCategory menuCat, bool menuInit);
virtual ~cDisplayMenuSchedulesView();
void SetChannel(const cChannel *channel) { this->channel = channel; };
void SetChannel(const cChannel *channel) { if (!this->channel) this->channel = channel; };
const cChannel *GetChannel(void) { return channel; };
bool DrawHeader(void);
};