blob: 546015d3eb8ef36c937f4ca0e73aef323249dfd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Description: Fix FTBS with VDR >=2.3.5
Origin: http://www.minidvblinux.de/git/?a=commit&p=vdr-plugin-scheduler&h=25981073415e8c74dd5ebe3f7d9d9a9407665f6a
Author: Andreas McPherson <megax@minidvblinux.de>
--- a/task.h
+++ b/task.h
@@ -94,6 +94,11 @@
public:
+ cTask& operator= (const cTask &Task)
+ {
+ return *this;
+ };
+
cTask(void);
cTask(const char* Name, const char* Cmd, int AnnounceMode = 0);
|