summaryrefslogtreecommitdiff
blob: 9c9bb957575ac68e1e061c18a4e491a2e9f48672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
diff -ru --exclude=po vdr-ffnetdev-0.1.0-orig/ffnetdev.c vdr-ffnetdev-0.1.0/ffnetdev.c
--- vdr-ffnetdev-0.1.0-orig/ffnetdev.c	2008-04-07 21:23:41.111987897 +0200
+++ vdr-ffnetdev-0.1.0/ffnetdev.c	2008-04-07 21:25:20.431993162 +0200
@@ -32,10 +32,10 @@
 	
 }
 
-cOsd * cNetOSDProvider::CreateOsd(int Left, int Top)
+cOsd * cNetOSDProvider::CreateOsd(int Left, int Top, uint level)
 {
     
-    osd = new cNetOSD(Left, Top);
+    osd = new cNetOSD(Left, Top, level);
     return osd;
 }
 
Nur in vdr-ffnetdev-0.1.0: libvdr-ffnetdev.so.1.6.0.
diff -ru --exclude=po vdr-ffnetdev-0.1.0-orig/netosd.c vdr-ffnetdev-0.1.0/netosd.c
--- vdr-ffnetdev-0.1.0-orig/netosd.c	2008-04-07 21:23:41.111987897 +0200
+++ vdr-ffnetdev-0.1.0/netosd.c	2008-04-07 21:24:58.971993422 +0200
@@ -9,7 +9,7 @@
 #include "osdworker.h"
 
 //////////////////////////////////////////////////////////////////////////////////////////////////
-cNetOSD::cNetOSD(int Left, int Top) : cOsd(Left, Top)
+cNetOSD::cNetOSD(int Left, int Top, uint level) : cOsd(Left, Top, level)
 {
 #ifdef DEBUG   
    fprintf(stderr,"[ffnetdev] NetOSD: Constructor cNetOSD.\n");
diff -ru --exclude=po vdr-ffnetdev-0.1.0-orig/netosd.h vdr-ffnetdev-0.1.0/netosd.h
--- vdr-ffnetdev-0.1.0-orig/netosd.h	2008-04-07 21:23:41.111987897 +0200
+++ vdr-ffnetdev-0.1.0/netosd.h	2008-04-07 21:25:05.401989955 +0200
@@ -17,7 +17,7 @@
 	bool truecolor;
 protected:
 public:
-    cNetOSD(int Left, int Top);
+    cNetOSD(int Left, int Top, uint level);
     virtual ~cNetOSD();
     virtual eOsdError CanHandleAreas(const tArea *Areas, int NumAreas);
     virtual void Flush(void);
@@ -31,7 +31,7 @@
     cNetOSD **NetOSD;
 public:
     cNetOSDProvider(void);
-    virtual cOsd *CreateOsd(int Left, int Top);
+    virtual cOsd *CreateOsd(int Left, int Top, uint level);
 };
 
 #endif //_NETOSD__H