diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-08-21 11:34:30 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-08-21 11:34:30 +0200 |
commit | 97ad2fa95df2f03e4c1dff9d4ff2d5abcaad42d8 (patch) | |
tree | 9df799cbd5216040b56e3bcc5af25c9e564c1614 /skinsttng.c | |
parent | e5d2240bbb98f24212213df92ad3ca3e1cf1e0e7 (diff) | |
download | vdr-97ad2fa95df2f03e4c1dff9d4ff2d5abcaad42d8.tar.gz vdr-97ad2fa95df2f03e4c1dff9d4ff2d5abcaad42d8.tar.bz2 |
Direct access to several class members is now deprecated
Diffstat (limited to 'skinsttng.c')
-rw-r--r-- | skinsttng.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skinsttng.c b/skinsttng.c index 169488a3..c9c3031f 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.10 2011/06/12 15:20:59 kls Exp $ + * $Id: skinsttng.c 2.11 2011/08/21 11:02:26 kls Exp $ */ // Star Trek: The Next Generation® is a registered trademark of Paramount Pictures @@ -693,7 +693,7 @@ void cSkinSTTNGDisplayMenu::SetRecording(const cRecording *Recording) int y = y3; cTextScroller ts; char t[32]; - snprintf(t, sizeof(t), "%s %s", *DateString(Recording->start), *TimeString(Recording->start)); + snprintf(t, sizeof(t), "%s %s", *DateString(Recording->Start()), *TimeString(Recording->Start())); ts.Set(osd, xl, y, x4 - xl, y4 - y, t, font, Theme.Color(clrMenuEventTime), Theme.Color(clrBackground)); y += ts.Height(); if (Info->GetEvent()->ParentalRating()) { |