summaryrefslogtreecommitdiff
path: root/recording.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2021-01-18 12:55:47 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2021-01-18 12:55:47 +0100
commitdee1225fa4d5de99b414b3748a21ef43e522818e (patch)
treec8950291f528a7cdecf5b17ff619e5b425eac983 /recording.c
parentd78d6fba7e0079712abc58e85fd441c625bb82b6 (diff)
downloadvdr-dee1225fa4d5de99b414b3748a21ef43e522818e.tar.gz
vdr-dee1225fa4d5de99b414b3748a21ef43e522818e.tar.bz2
Made the functions cRecordingInfo::SetData() and cRecordingInfo::SetAux() public
Diffstat (limited to 'recording.c')
-rw-r--r--recording.c8
1 files changed, 4 insertions, 4 deletions
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);
}