From 3e5b31af5e88bc4e43971a70b5add6f67cebb701 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 18 May 2002 12:41:18 +0200 Subject: Rearranged OSD class names to make 'cOsd' available for the main OSD interface --- osd.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'osd.h') diff --git a/osd.h b/osd.h index afd44859..174bf099 100644 --- a/osd.h +++ b/osd.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.h 1.29 2002/05/12 11:19:22 kls Exp $ + * $Id: osd.h 1.30 2002/05/18 12:36:30 kls Exp $ */ #ifndef __OSD_H @@ -69,19 +69,19 @@ public: virtual eOSState ProcessKey(eKeys Key); }; -class cOsdBase { +class cOsdObject { protected: bool needsFastResponse; public: - cOsdBase(bool FastResponse = false) { needsFastResponse = FastResponse; } - virtual ~cOsdBase() {} + cOsdObject(bool FastResponse = false) { needsFastResponse = FastResponse; } + virtual ~cOsdObject() {} int Width(void) { return Interface->Width(); } int Height(void) { return Interface->Height(); } bool NeedsFastResponse(void) { return needsFastResponse; } virtual eOSState ProcessKey(eKeys Key) = 0; }; -class cOsdMenu : public cOsdBase, public cList { +class cOsdMenu : public cOsdObject, public cList { private: char *title; int cols[cInterface::MaxCols]; -- cgit v1.2.3