diff options
author | lordjaxom <lordjaxom> | 2005-01-02 20:01:25 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-02 20:01:25 +0000 |
commit | a7bed00a72af44f56887cf6963119cf88ce02ecd (patch) | |
tree | 558d3b27e2adcb634235d7904c494528f6f14167 | |
parent | fa9208788e74c6931bf7bd47186f727028830da1 (diff) | |
download | vdr-plugin-text2skin-a7bed00a72af44f56887cf6963119cf88ce02ecd.tar.gz vdr-plugin-text2skin-a7bed00a72af44f56887cf6963119cf88ce02ecd.tar.bz2 |
- implemented new display in preparation for 1.3.18
-rw-r--r-- | xml/display.c | 5 | ||||
-rw-r--r-- | xml/display.h | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/xml/display.c b/xml/display.c index 058b7df..207e9b3 100644 --- a/xml/display.c +++ b/xml/display.c @@ -1,11 +1,12 @@ /* - * $Id: display.c,v 1.1 2004/12/19 22:03:25 lordjaxom Exp $ + * $Id: display.c,v 1.2 2005/01/02 20:01:25 lordjaxom Exp $ */ #include "xml/display.h" static const std::string DisplayNames[] = - { "channelInfo", "channelSmall", "volume", "message", "replayInfo", "replaySmall", "menu" }; + { "channelInfo", "channelSmall", "volume", "audioTracks", "message", "replayInfo", + "replaySmall", "menu" }; cxDisplay::cxDisplay(cxSkin *parent): mType((eType)__COUNT_DISPLAY__), diff --git a/xml/display.h b/xml/display.h index 73a7269..df502b7 100644 --- a/xml/display.h +++ b/xml/display.h @@ -1,5 +1,5 @@ /* - * $Id: display.h,v 1.2 2004/12/28 01:24:35 lordjaxom Exp $ + * $Id: display.h,v 1.3 2005/01/02 20:01:45 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_DISPLAY_H @@ -20,6 +20,7 @@ public: channelInfo, channelSmall, volume, + audioTracks, message, replayInfo, replaySmall, |