summaryrefslogtreecommitdiff
path: root/skinsttng.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2010-11-07 15:13:34 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2010-11-07 15:13:34 +0100
commit1e166490c8f9d4b6feddf6a3adc39dc5287a1fca (patch)
treec7418b01f1c05888fb14db9c4bdf5c020cc067ec /skinsttng.c
parent5eef32b558ca91ed26189748c2fe9f3bfd8dfca0 (diff)
downloadvdr-1e166490c8f9d4b6feddf6a3adc39dc5287a1fca.tar.gz
vdr-1e166490c8f9d4b6feddf6a3adc39dc5287a1fca.tar.bz2
Removed displaying the "contents" information from the "Classic VDR" and "ST:TNG Panels" skins
Diffstat (limited to 'skinsttng.c')
-rw-r--r--skinsttng.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/skinsttng.c b/skinsttng.c
index b37a2e9d..c39ecce0 100644
--- a/skinsttng.c
+++ b/skinsttng.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skinsttng.c 2.5 2010/02/13 13:30:59 kls Exp $
+ * $Id: skinsttng.c 2.6 2010/11/07 15:10:08 kls Exp $
*/
// Star Trek: The Next Generation® is a registered trademark of Paramount Pictures
@@ -612,14 +612,6 @@ void cSkinSTTNGDisplayMenu::SetEvent(const cEvent *Event)
ts.Set(osd, xl, y, x4 - xl, y4 - y, Event->ShortText(), font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
y += ts.Height();
}
- for (int i = 0; Event->Contents(i); i++) {
- const char *s = Event->ContentToString(Event->Contents(i));
- if (!isempty(s)) {
- const cFont *font = cFont::GetFont(fontSml);
- ts.Set(osd, xl, y, x4 - xl, y4 - y, s, font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
- y += ts.Height();
- }
- }
y += font->Height();
if (!isempty(Event->Description())) {
int yt = y;
@@ -666,14 +658,6 @@ void cSkinSTTNGDisplayMenu::SetRecording(const cRecording *Recording)
ts.Set(osd, xl, y, x4 - xl, y4 - y, Info->ShortText(), font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
y += ts.Height();
}
- for (int i = 0; Info->GetEvent()->Contents(i); i++) {
- const char *s = Info->GetEvent()->ContentToString(Info->GetEvent()->Contents(i));
- if (!isempty(s)) {
- const cFont *font = cFont::GetFont(fontSml);
- ts.Set(osd, xl, y, x4 - xl, y4 - y, s, font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
- y += ts.Height();
- }
- }
y += font->Height();
if (!isempty(Info->Description())) {
int yt = y;