summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-05-23 09:54:06 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-05-23 09:54:06 +0200
commit4c5aedbd797ea4308974a3db4107cc8e32f50d17 (patch)
tree13e62bf3e16422dff63d77261540f7a92ec83d8a /menu.h
parentd10624fbcac3a4e480543c40f09faea31561414c (diff)
downloadvdr-4c5aedbd797ea4308974a3db4107cc8e32f50d17.tar.gz
vdr-4c5aedbd797ea4308974a3db4107cc8e32f50d17.tar.bz2
Added SetText() to cMenuText
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/menu.h b/menu.h
index 64bd0f95..150f88de 100644
--- a/menu.h
+++ b/menu.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.h 1.62 2004/05/23 09:39:02 kls Exp $
+ * $Id: menu.h 1.63 2004/05/23 09:47:26 kls Exp $
*/
#ifndef __MENU_H
@@ -21,9 +21,11 @@
class cMenuText : public cOsdMenu {
private:
- const char *text;
+ char *text;
public:
cMenuText(const char *Title, const char *Text, eDvbFont Font = fontOsd);
+ virtual ~cMenuText();
+ void SetText(const char *Text);
virtual void Display(void);
virtual eOSState ProcessKey(eKeys Key);
};