summaryrefslogtreecommitdiff
path: root/vdr.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-05-18 12:41:18 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-05-18 12:41:18 +0200
commit3e5b31af5e88bc4e43971a70b5add6f67cebb701 (patch)
treeaba62ea0b1ba467df4b938420518f09bbb9900c8 /vdr.c
parent4da8a8e0666b3bfc1eac21aaf6a3aa66db02578c (diff)
downloadvdr-3e5b31af5e88bc4e43971a70b5add6f67cebb701.tar.gz
vdr-3e5b31af5e88bc4e43971a70b5add6f67cebb701.tar.bz2
Rearranged OSD class names to make 'cOsd' available for the main OSD interface
Diffstat (limited to 'vdr.c')
-rw-r--r--vdr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vdr.c b/vdr.c
index 5acd2241..6d83acce 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/people/kls/vdr
*
- * $Id: vdr.c 1.110 2002/05/18 10:33:54 kls Exp $
+ * $Id: vdr.c 1.111 2002/05/18 12:35:34 kls Exp $
*/
#include <getopt.h>
@@ -363,7 +363,7 @@ int main(int argc, char *argv[])
// Main program loop:
- cOsdBase *Menu = NULL;
+ cOsdObject *Menu = NULL;
cReplayControl *ReplayControl = NULL;
int LastChannel = -1;
int PreviousChannel = cDvbApi::CurrentChannel();
@@ -409,7 +409,7 @@ int main(int argc, char *argv[])
}
}
// User Input:
- cOsdBase **Interact = Menu ? &Menu : (cOsdBase **)&ReplayControl;
+ cOsdObject **Interact = Menu ? &Menu : (cOsdObject **)&ReplayControl;
eKeys key = Interface->GetKey(!*Interact || !(*Interact)->NeedsFastResponse());
if (NORMALKEY(key) != kNone) {
EITScanner.Activity();