summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2010-03-07 12:43:30 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2010-03-07 12:43:30 +0100
commit74d6d35bce1f724e0d1e1b57fe5b022189c73f2c (patch)
tree16657cac088f1c29d172b609fe123d40b3adb784 /menu.h
parent2f16565bc8a81be10af7bb1ba652719a8aaa9eb6 (diff)
downloadvdr-74d6d35bce1f724e0d1e1b57fe5b022189c73f2c.tar.gz
vdr-74d6d35bce1f724e0d1e1b57fe5b022189c73f2c.tar.bz2
Implemented automatic deleting of timeshift recording
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/menu.h b/menu.h
index 39de82d8..ec1c175b 100644
--- a/menu.h
+++ b/menu.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.h 2.2 2010/02/06 10:17:24 kls Exp $
+ * $Id: menu.h 2.3 2010/03/06 16:15:59 kls Exp $
*/
#ifndef __MENU_H
@@ -226,7 +226,7 @@ public:
virtual ~cRecordControl();
bool Process(time_t t);
cDevice *Device(void) { return device; }
- void Stop(void);
+ void Stop(bool ExecuteUserCommand = true);
const char *InstantId(void) { return instantId; }
const char *FileName(void) { return fileName; }
cTimer *Timer(void) { return timer; }
@@ -278,6 +278,7 @@ private:
public:
cReplayControl(void);
virtual ~cReplayControl();
+ void Stop(void);
virtual cOsdObject *GetInfo(void);
virtual eOSState ProcessKey(eKeys Key);
virtual void Show(void);