diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-10-11 09:38:07 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-10-11 09:38:07 +0200 |
commit | 01d7269904ba4fca551cca8ff9d1dcb85fa3456a (patch) | |
tree | ba2d92a490b625e27bdfb395907710a01ca91dc9 /videodir.c | |
parent | 7c72f7932992b4dffa84857567f8ccadc49ad571 (diff) | |
download | vdr-01d7269904ba4fca551cca8ff9d1dcb85fa3456a.tar.gz vdr-01d7269904ba4fca551cca8ff9d1dcb85fa3456a.tar.bz2 |
Removed the deprecated VideoDirectory variable
Diffstat (limited to 'videodir.c')
-rw-r--r-- | videodir.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: videodir.c 3.3 2013/10/08 13:26:41 kls Exp $ + * $Id: videodir.c 3.4 2013/10/11 09:38:07 kls Exp $ */ #include "videodir.h" @@ -19,9 +19,6 @@ #include "recording.h" #include "tools.h" -#ifdef DEPRECATED_VIDEODIR -const char *VideoDirectory = VIDEODIR; -#endif cString cVideoDirectory::name; cVideoDirectory *cVideoDirectory::current = NULL; @@ -61,9 +58,6 @@ const char *cVideoDirectory::Name(void) void cVideoDirectory::SetName(const char *Name) { name = Name; -#ifdef DEPRECATED_VIDEODIR - VideoDirectory = Name; -#endif } bool cVideoDirectory::Register(const char *FileName) |