From dee1225fa4d5de99b414b3748a21ef43e522818e Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 18 Jan 2021 12:55:47 +0100 Subject: Made the functions cRecordingInfo::SetData() and cRecordingInfo::SetAux() public --- recording.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'recording.c') diff --git a/recording.c b/recording.c index 2e2ceefa..758f3a90 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 5.2 2021/01/01 15:26:27 kls Exp $ + * $Id: recording.c 5.3 2021/01/18 12:55:47 kls Exp $ */ #include "recording.h" @@ -430,11 +430,11 @@ cRecordingInfo::~cRecordingInfo() void cRecordingInfo::SetData(const char *Title, const char *ShortText, const char *Description) { - if (!isempty(Title)) + if (Title) ((cEvent *)event)->SetTitle(Title); - if (!isempty(ShortText)) + if (ShortText) ((cEvent *)event)->SetShortText(ShortText); - if (!isempty(Description)) + if (Description) ((cEvent *)event)->SetDescription(Description); } -- cgit v1.2.3