diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-08 14:39:09 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-08 14:39:09 +0200 |
commit | 9d509c37e712974d653b8ccd2ceddfda7c9cccfe (patch) | |
tree | 7318c9b8e0634b003fffb8cba0a1e68c520129c0 /menu.h | |
parent | c7bb0bb73964eafed5e337dc18278fa118775671 (diff) | |
download | vdr-9d509c37e712974d653b8ccd2ceddfda7c9cccfe.tar.gz vdr-9d509c37e712974d653b8ccd2ceddfda7c9cccfe.tar.bz2 |
Switching through channel groups now starts at current channel's group
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.h 1.25 2001/09/01 14:52:48 kls Exp $ + * $Id: menu.h 1.26 2001/09/08 13:58:46 kls Exp $ */ #ifndef _MENU_H @@ -31,14 +31,15 @@ public: class cDisplayChannel : public cOsdBase { private: - bool withInfo, group; + int group; + bool withInfo; int lines; int lastTime; int oldNumber, number; void DisplayChannel(const cChannel *Channel); void DisplayInfo(void); public: - cDisplayChannel(int Number, bool Switched, bool Group = false); + cDisplayChannel(int Number, bool Switched); cDisplayChannel(eKeys FirstKey); virtual ~cDisplayChannel(); virtual eOSState ProcessKey(eKeys Key); |