summaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
authorschmirl <schmirl>2008-04-07 14:27:27 +0000
committerschmirl <schmirl>2008-04-07 14:27:27 +0000
commitf51d6eb2dfb128a29db34b05d9b92a9633dd5b29 (patch)
tree328eeeb9761d13aede43a94598af3ffaedc9e202 /common.c
parent71cc16a1eb1774f9f20f8eed03b17af3e8691edc (diff)
downloadvdr-plugin-streamdev-f51d6eb2dfb128a29db34b05d9b92a9633dd5b29.tar.gz
vdr-plugin-streamdev-f51d6eb2dfb128a29db34b05d9b92a9633dd5b29.tar.bz2
- removed legacy code for pre VDR 1.4
- dropped patches for pre VDR 1.4
Diffstat (limited to 'common.c')
-rw-r--r--common.c15
1 files changed, 3 insertions, 12 deletions
diff --git a/common.c b/common.c
index 921170d..a27e07b 100644
--- a/common.c
+++ b/common.c
@@ -1,5 +1,5 @@
/*
- * $Id: common.c,v 1.6 2008/03/31 10:34:26 schmirl Exp $
+ * $Id: common.c,v 1.7 2008/04/07 14:27:27 schmirl Exp $
*/
#include <vdr/channels.h>
@@ -11,7 +11,7 @@
using namespace std;
-const char *VERSION = "0.3.4-CVS";
+const char *VERSION = "0.4.0-pre";
const char *StreamTypes[st_Count] = {
"TS",
@@ -113,16 +113,7 @@ void cStreamdevMenuSetupPage::AddCategory(const char *Title) {
cOsdItem *item = new cOsdItem(buffer);
free(buffer);
-
-#if VDRVERSNUM < 10307
-# ifdef HAVE_BEAUTYPATCH
- item->SetColor(clrScrolLine, clrBackground);
-# else
- item->SetColor(clrCyan, clrBackground);
-# endif
-#else
- item->SetSelectable(false);
-#endif
+ item->SetSelectable(false);
Add(item);
}