summaryrefslogtreecommitdiff
path: root/skins.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-06-02 11:44:14 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-06-02 11:44:14 +0200
commit754863902147fb87baf824db92e2073095d41386 (patch)
treef19a25f539a88be39eaaabf29e2b56bc7a0c6d3f /skins.c
parent41b1160f01b3435cd2c93de8874c5937c366d14f (diff)
downloadvdr-754863902147fb87baf824db92e2073095d41386.tar.gz
vdr-754863902147fb87baf824db92e2073095d41386.tar.bz2
Fixed setting the recording title for the replay display of old skins
Diffstat (limited to 'skins.c')
-rw-r--r--skins.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/skins.c b/skins.c
index b7cc1be2..5fb85a72 100644
--- a/skins.c
+++ b/skins.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skins.c 2.9 2012/05/20 13:49:24 kls Exp $
+ * $Id: skins.c 2.10 2012/06/02 11:44:14 kls Exp $
*/
#include "skins.h"
@@ -174,7 +174,7 @@ cSkinDisplayReplay::cSkinDisplayReplay(void)
void cSkinDisplayReplay::SetRecording(const cRecording *Recording)
{
- SetTitle(Recording->Name());
+ SetTitle(Recording->Title());
}
void cSkinDisplayReplay::SetMarks(const cMarks *Marks)