Automatically removing deleted recordings after a while

This commit is contained in:
Klaus Schmidinger
2001-02-04 12:36:32 +01:00
parent 2adfad2823
commit 1c81b279ee
7 changed files with 54 additions and 11 deletions

11
menu.c
View File

@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menu.c 1.62 2001/02/03 16:05:31 kls Exp $
* $Id: menu.c 1.63 2001/02/04 11:48:01 kls Exp $
*/
#include "menu.h"
@@ -2019,6 +2019,15 @@ void cRecordControls::Process(void)
}
}
bool cRecordControls::Active(void)
{
for (int i = 0; i < MAXDVBAPI; i++) {
if (RecordControls[i])
return true;
}
return false;
}
// --- cProgressBar ----------------------------------------------------------
class cProgressBar : public cBitmap {