summaryrefslogtreecommitdiff
path: root/skinclassic.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 /skinclassic.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 'skinclassic.c')
-rw-r--r--skinclassic.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/skinclassic.c b/skinclassic.c
index 38520107..33332467 100644
--- a/skinclassic.c
+++ b/skinclassic.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skinclassic.c 2.4 2010/02/13 13:44:48 kls Exp $
+ * $Id: skinclassic.c 2.5 2010/11/07 15:10:23 kls Exp $
*/
#include "skinclassic.h"
@@ -361,14 +361,6 @@ void cSkinClassicDisplayMenu::SetEvent(const cEvent *Event)
ts.Set(osd, x1, y, x2 - x1, y3 - 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, x1, y, x2 - x1, y3 - y, s, font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
- y += ts.Height();
- }
- }
y += font->Height();
if (!isempty(Event->Description())) {
textScroller.Set(osd, x1, y, x2 - x1, y3 - y, Event->Description(), font, Theme.Color(clrMenuEventDescription), Theme.Color(clrBackground));
@@ -405,14 +397,6 @@ void cSkinClassicDisplayMenu::SetRecording(const cRecording *Recording)
ts.Set(osd, x1, y, x2 - x1, y3 - 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, x1, y, x2 - x1, y3 - y, s, font, Theme.Color(clrMenuEventShortText), Theme.Color(clrBackground));
- y += ts.Height();
- }
- }
y += font->Height();
if (!isempty(Info->Description())) {
textScroller.Set(osd, x1, y, x2 - x1, y3 - y, Info->Description(), font, Theme.Color(clrMenuEventDescription), Theme.Color(clrBackground));